Status

Required plan: Emerging

Description #

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 - πŸ‡¦πŸ‡Ί Australia
  • api-ca.cronofy.com - πŸ‡¨πŸ‡¦ Canada
  • api-de.cronofy.com - πŸ‡©πŸ‡ͺ Germany
  • api-sg.cronofy.com - πŸ‡ΈπŸ‡¬ Singapore
  • api-uk.cronofy.com - πŸ‡¬πŸ‡§ United Kingdom
  • api.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:

  • open a slot hasn’t been chosen.
  • completed a slot has been chosen.
  • disabled the link has been disabled before a slot was chosen.