Skip to main content
List agencies
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/agencies \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "agencyId": "<string>",
      "name": "<string>",
      "address": {
        "street": "<string>",
        "city": "<string>",
        "state": "<string>",
        "zipCode": "<string>",
        "apartment": "<string>"
      },
      "timezone": "<string>",
      "status": "active",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of agencies.

data
object[]