GET
/
clinicians
curl --request GET \
  --url https://api.axlehealth.com/api/v2-stable/clinicians
{
  "items": [
    {
      "clinician_id": "35acf466-a3ae-459c-88cf-51e66c22a8ea",
      "first_name": "John",
      "last_name": "Doe",
      "email": "johndoe@example.com",
      "phone": "+19857981345",
      "address": {
        "line1": "123 Main St",
        "line2": "",
        "city": "Los Angeles",
        "state": "CA",
        "zip_code": "81001"
      },
      "default_shift_options": {
        "mobile_territories": [],
        "virtual_territories": []
      },
      "language_codes": [
        "en",
        "es",
        "fr"
      ],
      "qualifications": [
        {
          "qualification_id": "acace676-b0e1-4a0a-93ab-fdb0ed449149"
        },
        {
          "qualification_id": "2c08c54d-93d7-4869-b630-b64f5e96ea3e"
        }
      ]
    }
  ],
  "pagination": {
    "offset": 0,
    "count_limit": 25,
    "total_records": 1
  }
}

Query Parameters

offset
integer
default:0

The number of records to skip before starting to collect the result set.

count_limit
integer
default:100

The maximum number of records to return.

Response

200 - application/json

A paginated list of clinicians

The response is of type object.