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: api.cronofy.com
Authorization: Bearer {ACCESS_TOKEN}
Example Response #
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"slots" : [
{
"slot_id": "slt_1529540802",
"start": "2021-04-13T00:09:00Z",
"end": "2021-04-13T00:10:00Z"
},
{
"slot_id": "slt_1529551800",
"start": "2021-04-13T00:10:00Z",
"end": "2021-04-13T00:11:00Z"
},
{
"slot_id": "slt_1529561205",
"start": "2021-04-13T00:13:00Z",
"end": "2021-04-13T00:14:00Z"
}
]
}
Request parameters #
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
.