Skip to main content
List agency visit types
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/agencies/{agencyId}/visit-types \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "visitTypeId": "<string>",
      "name": "<string>",
      "discipline": "<string>",
      "serviceCode": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agencyId
string
required

Response

200 - application/json

List of visit types for the agency.

data
object[]