Skip to main content
GET
/
appointments
/
{appointmentId}
/
slots
/
{slotId}
/
attendees
cURL
curl --request GET \
  --url https://admin.fanfare.io/api/appointments/{appointmentId}/slots/{slotId}/attendees \
  --header 'Authorization: Bearer <token>'
{
  "appointmentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "attendees": [
    {
      "consumerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "checkedInAt": "2023-11-07T05:31:56Z",
      "email": "<string>",
      "enteredAt": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "phone": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "page": 123,
    "total": 123,
    "totalPages": 123
  },
  "slotId": "<string>"
}

Authorizations

Authorization
string
header
required

Fanfare secret key. Keep secret credentials on your server.

Path Parameters

appointmentId
string
required
slotId
string
required

Query Parameters

page
string
limit
string

Response

Slot attendees retrieved successfully

appointmentId
string<uuid>
required
attendees
object[]
required
pagination
object
required
slotId
string
required