Skip to main content
POST
/
v3
/
appointment-waitlists
Add Appointment Waitlist
curl --request POST \
  --url https://api.{tenant}.getomneo.com/api/v3/appointment-waitlists \
  --header 'Content-Type: application/json' \
  --data '
{
  "appointment_definition_id": 123,
  "profile_id": "<string>",
  "location_id": 123,
  "appointment_id": 123,
  "desired_start_at": "<string>",
  "notes": "<string>",
  "meta": [
    "<string>"
  ]
}
'
{
  "data": {
    "id": 123,
    "appointment_definition_id": 123,
    "profile_id": "<string>",
    "profile": {
      "id": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "email": "<string>"
    },
    "location_id": 123,
    "location": {
      "id": "<string>",
      "name": "<string>",
      "handle": "<string>",
      "timezone": "<string>"
    },
    "appointment_id": 123,
    "status": "<string>",
    "desired_start_at": "<string>",
    "notes": "<string>",
    "meta": [
      "<unknown>"
    ],
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
appointment_definition_id
integer
required
profile_id
string
required
location_id
integer
required
appointment_id
integer | null
status
enum<string>
Available options:
active,
fulfilled,
cancelled
desired_start_at
string | null
notes
string | null
meta
string[] | null

Response

AppointmentWaitlist

data
AppointmentWaitlist · object
required