Skip to main content
List agency clinicians
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/agencies/{agencyId}/clinicians \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "clinicianId": "<string>",
      "agencyId": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "credentials": "<string>",
      "npi": "<string>",
      "role": "<string>",
      "email": "<string>",
      "status": "active",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123,
    "offset": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agencyId
string
required

Query Parameters

limit
integer
default:20
Required range: x <= 100
offset
integer
default:0

Response

200 - application/json

List of clinicians in the agency.

data
object[]
pagination
object