Skip to main content
POST
/
v3
/
appointment-queues
Add Appointment Queue
curl --request POST \
  --url https://api.{tenant}.getomneo.com/api/v3/appointment-queues \
  --header 'Content-Type: application/json' \
  --data '
{
  "appointment_definition_id": 123,
  "location_id": 123,
  "profile_id": "<string>",
  "staff_id": "<string>",
  "appointment_id": 123,
  "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>"
    },
    "staff_id": "<string>",
    "staff": {
      "id": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "email": "<string>"
    },
    "appointment_id": 123,
    "status": "<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
location_id
integer
required
profile_id
string | null
staff_id
string | null
appointment_id
integer | null
status
enum<string>
Available options:
waiting,
called,
served,
cancelled
notes
string | null
meta
string[] | null

Response

AppointmentQueue

data
AppointmentQueue · object
required