List Slots ALPHA
Descriptions #
This endpoint provides a list of slots available to be offered to participants in the conversation.
URL Format #
Provided as an action link in the Read Scheduling Conversation response
Example Request #
GET {slots_list_url} HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {ACCESS_TOKEN}
Example Response #
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"slots" : [
{
"slot_id": "slt_1529540802",
"start": "2024-12-23T00:09:00Z",
"end": "2024-12-23T00:10:00Z"
},
{
"slot_id": "slt_1529551800",
"start": "2024-12-23T00:10:00Z",
"end": "2024-12-23T00:11:00Z"
},
{
"slot_id": "slt_1529561205",
"start": "2024-12-23T00:13:00Z",
"end": "2024-12-23T00:14:00Z"
}
]
}
Request parameters #
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.
slots_list_url required #
The participant.slots_list.url
.
Response parameters #
slots.slot_id #
A unique ID for the slot that can be used to select for a given participant.
slots.start #
The start
time of the slot provided as a Time
.
slots.end #
The end
time of the slot provided as a Time
.