SuperpositionSuperposition

Book an interview slot

POST
/scheduling/{jobId}/{stageId}/bookings

Books an interview slot. The response is identical for a matched vs unmatched candidate (no existence oracle); the candidate join link is delivered by email, never in the response. Rate-limited per (jobId, IP) and per email per day.

Path Parameters

jobId*string
stageId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/scheduling/string/string/bookings" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "slotStart": "2019-08-24T14:15:22Z"  }'
{  "data": {    "confirmed": true  }}

Last updated on