Status
Required plan: EmergingDescription #
Retrieves the current state of a Real Time Scheduling link.
URL format #
{data_center_url}/v1/real_time_scheduling?token={token}
or
{data_center_url}/v1/real_time_scheduling/{id}
Example Request #
You can request the status by either its ID or token.
GET /v1/real_time_scheduling?token={token} HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {API_KEY}GET /v1/real_time_scheduling/{id} HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {API_KEY}Request parameters #
Either token or id are required, depending on which form of request you are making.
token required #
The String that is returned as the final component of the real_time_scheduling.url parameter of the Real-Time Scheduling creation response body.
id required #
The String that is returned on the real_time_scheduling.real_time_scheduling_id parameter of the Real-Time Scheduling creation response body.
data_center_url required
The URL for the data center you want to communicate with. Possible choices are:
api-au.cronofy.com- π¦πΊ Australiaapi-ca.cronofy.com- π¨π¦ Canadaapi-de.cronofy.com- π©πͺ Germanyapi-sg.cronofy.com- πΈπ¬ Singaporeapi-uk.cronofy.com- π¬π§ United Kingdomapi.cronofy.com- πΊπΈ United States
Find out more about Cronofy's data centers.
Example Response #
HTTP/1.1 200 Success
{
"real_time_scheduling": {
"real_time_scheduling_id": "sch_64b1859e8090ea21640c915f",
"url": "{REAL_TIME_SCHEDULING_URL}",
"event": {...},
"status": "completed"
}
}Response parameters #
real_time_scheduling.real_time_scheduling_id #
The Cronofy identifier for the Real Time Scheduling link, a String.
real_time_scheduling.url #
The URL to direct the user to in order for them to select a time slot.
real_time_scheduling.event #
The current state of the event associated with the link. Once completed the event will have start and end values.
real_time_scheduling.status #
The String describing the current status of the link. Possible values:
opena slot hasn’t been chosen.completeda slot has been chosen.disabledthe link has been disabled before a slot was chosen.expiredno slot was chosen past thequery_periods.end.