# List Resources

#### Description
The resources (rooms and equipment) associated with an Enterprise Connect account can be listed via the resources endpoint.

This requires the Enterprise Connect authentication to have the `service_account/resources/manage` scope granted.

#### URL format
```
{data_center_url}/v1/resources
```

#### Example request
```http
GET /v1/resources HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {ACCESS_TOKEN}
```

#### Example Response
```http
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
  "resources": [
    {
      "email": "board-room-london@example.com",
      "name": "Board room (London)"
    },
    {
      "email": "board-room-madrid@example.com",
      "name": "Board room (Madrid)"
    },
    {
      "email": "3dprinter@example.com",
      "name": "3D Printer"
    },
    {
      "email": "vr-headset@example.com",
      "name": "Oculus Rift"
    }
  ]
}
```

#### Request parameters
##### `data_center_url` *(required)*

The URL for the data center you want to communicate with. Possible choices are:

- `api-au.cronofy.com` - Australia
- `api-ca.cronofy.com` - Canada
- `api-de.cronofy.com` - Germany
- `api-sg.cronofy.com` - Singapore
- `api-uk.cronofy.com` - United Kingdom
- `api.cronofy.com` - United States

Find out more about [Cronofy's data centers](/developers/data-centers/index.md).
#### Response parameters
##### `resources.email`

The email address for the resource.

May be used to obtain access tokens for the resource calendar via [Requesting Delegated Access](/developers/api/enterprise-connect/delegated-access/index.md).

##### `resources.name`

The name defined for the resource by the Enterprise Connect account.

> **WARNING:** Exchange and Office 365 users will need to ensure that any resources are added to a RoomList in order for these resources to be retrieved. For details on how to configure this for Office 365 see: enabling RoomList distribution groups.



---
[Read in HTML](/developers/api/enterprise-connect/list-resources/)