CaraCara API
API ReferenceScheduling

Get availability

Query available time slots for scheduling.

Query available time slots for scheduling.

GET
/scheduling/availability

Authorization

AuthorizationRequiredBearer <token>

Use your API key (sk_live_* or sk_test_*) as the Bearer token.

In: header

Query Parameters

dateRequiredstring
Format: "date"
providerIdstring
curl -X GET "https://platform.caramedical.com/api/v1/scheduling/availability?date=2019-08-24&providerId=%3Cstring%3E" \
  -H "Authorization: Bearer <token>"

Available time slots.

{
  "slots": [
    {
      "start": "2019-08-24T14:15:22Z",
      "end": "2019-08-24T14:15:22Z",
      "available": true
    }
  ]
}