curl --request GET \
  --url https://api.splose.com/v1/availabilities/{practitionerId} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "date": "2024-01-04T00:00:00.000Z",
      "locationId": 1,
      "startTime": "09:00",
      "endTime": "17:00",
      "repeatInterval": "Weekly"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

practitionerId
integer
required
Required range: x > 0
Example:

1

Query Parameters

startDate
required

Start date of the availabilities

Example:

"2024-01-01T00:00:00.000Z"

endDate
required

End date of the availabilities, 100 days since startDate

Example:

"2024-01-31T00:00:00.000Z"

locationId
number | null

Search for availabilities with this location id

Example:

1

Response

200 - application/json
An array of availabilities
data
object[]
required