POST
/
clinicians
curl --request POST \
  --url https://api.axlehealth.com/api/v2-stable/clinicians \
  --header 'Content-Type: application/json' \
  --data '{
  "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"
  },
  "language_codes": [
    "en",
    "es",
    "fr"
  ],
  "qualifications": [
    {
      "qualification_id": "acace676-b0e1-4a0a-93ab-fdb0ed449149"
    },
    {
      "qualification_id": "2c08c54d-93d7-4869-b630-b64f5e96ea3e"
    }
  ]
}'
{
  "clinician_id": "89eac3c9-7e0e-44ec-94c4-f3bc17eb52f8"
}

Body

application/json

Response

201 - application/json

Clinician created successfully

The response is of type object.