CaraCara API
API ReferenceScheduling

List schedulers

Retrieve all schedulers for the tenant.

Retrieve all schedulers for the tenant.

GET
/schedulers

Authorization

AuthorizationRequiredBearer <token>

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

In: header

curl -X GET "https://platform.caramedical.com/api/v1/schedulers" \
  -H "Authorization: Bearer <token>"

List of schedulers.

{
  "schedulers": [
    {
      "id": "string",
      "name": "string",
      "slug": "string",
      "description": "string",
      "isActive": true,
      "bookingsCount": 0,
      "viewsCount": 0,
      "conversionRate": 0.1,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}