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-07-28T00:09:00Z",
      "end": "2024-07-28T00:10:00Z"
    },
    {
      "slot_id": "slt_1529551800",
      "start": "2024-07-28T00:10:00Z",
      "end": "2024-07-28T00:11:00Z"
    },
    {
      "slot_id": "slt_1529561205",
      "start": "2024-07-28T00:13:00Z",
      "end": "2024-07-28T00: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 - πŸ‡¦πŸ‡Ί 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.

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.