curl --request GET \
  --url https://api.splose.com/v1/practitioners/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "firstname": "Albus",
  "lastname": "Dumbledore",
  "email": "jsmith@example.com",
  "title": "Dr",
  "profession": "Physiotherapist",
  "isActive": true,
  "description": "Practitioner admin of Hogwarts",
  "roleName": "practitioner admin",
  "onlineBooking": false,
  "timezone": "Australia/Adelaide",
  "providerNumbers": [
    {
      "type": "Medicare",
      "number": "12345678",
      "locationId": 1
    }
  ],
  "createdAt": "2023-07-30T09:00:00.000Z",
  "updatedAt": "2023-07-30T09:00:00.000Z",
  "deletedAt": "2023-07-30T09:00:00.000Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required
Required range: x > 0
Example:

1

Response

200 - application/json

Object with practitioner data.

The response is of type object.