Appointment Type
An appointment type is a type of appointment that a patient that can book with you. For example, you can have: a) Individual or group appointments, b) one-time or recurring appointments, c) Require no, one-time, or recurring payment, and d) Are visible to all patients or only to certain groups of patients or individual patients.
The appointment type model
Properties
- Name
id
- Type
- string
- Description
Unique identifier for the appointment type.
- Name
object
- Type
- string
- Description
Always 'appointment_type'.
- Name
name
- Type
- string
- Description
Name of the appointment type.
- Name
description
- Type
- string
- Description
Description of the appointment type.
- Name
duration
- Type
- number
- Description
Duration of the appointment type.
- Name
group
- Type
- boolean
- Description
Whether this is a group appointment.
- Name
max_participants
- Type
- number
- Description
Max number of participants allowed in appointments of this appointment type.
- Name
created_by
- Type
- string
- Description
Creator of the appointment type.
- Name
created_at
- Type
- number
- Description
Timestamp (in Unix epoch time in milliseconds) of when the appointment type was created.
- Name
last_updated_at
- Type
- number
- Description
Timestamp (in Unix epoch time in milliseconds) of when the appointment type was last updated.
Response
{
"id": "aptp_3XxtAULYUrX7GVsTKePy",
"object": "appointment_type",
"name": "Annual Check-in",
"description": "Annual check-in appointment for all patients",
"group": false,
"created_by": "user_xeDpGyt67wTor93qKtS7",
"created_at": 1653798303000,
"last_updated_at": 1653798303000
}