Skip to main content
GET
/
api
/
simple_scheduler_booking_requests
List Simple Scheduler booking requests
curl --request GET \
  --url https://enterprise-api.avoca.ai/api/simple_scheduler_booking_requests \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "team_id": 123,
      "scheduler_id": 123,
      "status": "<string>",
      "st_job_id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "request_data": {}
    }
  ],
  "meta": {
    "total": 123,
    "next_cursor": "<string>",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

API key in the format avoca_<64 hex characters>

Headers

x-team-id
integer

Target team ID. Required for multi-team (enterprise_all_teams / portfolio_all_teams) keys on v0 endpoints; single-team keys are locked to their team and omit it.

Query Parameters

status
string

Filter by request status

scheduler_id
integer

Filter to a specific scheduler

has_utm
boolean

When true, only requests with UTM attribution

cursor
string<date-time>

ISO 8601 created_at cursor from a previous page (cursor mode)

limit
integer
default:50

Results per page (default 50, max 500)

Required range: x <= 500
offset
integer
default:0

Pagination offset (default 0)

Response

Booking requests

data
object[]
meta
object