SuperpositionSuperposition

Get interview availability

GET
/scheduling/{jobId}/{stageId}/availability

Returns bookable interview slots for a Superposition-room stage, as bare start/end times only (never the interviewer roster). Powers the hosted booking page. Rate-limited per (jobId, IP).

Path Parameters

jobId*string

The job's non-enumerable id (from the booking link).

stageId*string

The interview stage's non-enumerable id (from the booking link).

Query Parameters

start?string

ISO 8601 window start. Defaults to now.

Formatdate-time
end?string

ISO 8601 window end. Defaults to a 14-day window; capped at 60 days.

Formatdate-time

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/scheduling/string/string/availability"
{  "data": {    "slots": [      {        "start": "2019-08-24T14:15:22Z",        "end": "2019-08-24T14:15:22Z"      }    ]  }}

Last updated on