Skip to main content
Create Appointment Type
curl --request POST \
  --url https://integration.getmateo.com/api/v1/appointment_type \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "random uuid",
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "key": "<string>",
  "emoji": "<string>",
  "description": "<string>",
  "external_id": "<string>"
}
'
{
  "id": "random uuid",
  "created_at": "now()",
  "updated_at": "now()",
  "organisation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "key": "<string>",
  "emoji": "<string>",
  "description": "<string>",
  "external_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getmateo.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

select
string

Filtering Columns

Body

application/json

appointment_type

id
string<uuid>
default:random uuid

Appointment type ID

created_at
string<timestamp with time zone>
default:now()

Creation date

updated_at
string<timestamp with time zone>
default:now()

Latest update

organisation_id
string<uuid> | null

Organisation ID

name
string<text>

Name of the appointment type

key
string<text>

Key of the appointment type

emoji
string<text> | null

Emoji of the appointment type

description
string<text> | null

Description of the appointment type

external_id
string<text> | null

External ID

Response

The updated Appointment Type object

id
string<uuid>
default:random uuid

Appointment type ID

created_at
string<timestamp with time zone>
default:now()

Creation date

updated_at
string<timestamp with time zone>
default:now()

Latest update

organisation_id
string<uuid> | null

Organisation ID

name
string<text>

Name of the appointment type

key
string<text>

Key of the appointment type

emoji
string<text> | null

Emoji of the appointment type

description
string<text> | null

Description of the appointment type

external_id
string<text> | null

External ID