Skip to main content
POST
/
api
/
booking
/
reserve
Reserve appointment slot
curl --request POST \
  --url https://brunkhorst.connectors.aicoflow.com/api/booking/reserve \
  --header 'Content-Type: application/json' \
  --data '
{
  "time": "<string>",
  "service_ids": [
    "<string>"
  ],
  "session_id": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Body

application/json

Request model for reserving an appointment.

time
string
required

Time in ISO format (YYYY-MM-DDTHH:MM:SS)

service_ids
string[]
required

List of service IDs

session_id
string | null

Session ID for linking reservation

Response

Reservation details including appointment_id and expiration time