get
https://api.zenoti.com//v1/appointments//day_packages
This API endpoint retrieves appointment-level service details for a day package invoice item, including service info, therapist, room, and equipment for each booked appointment.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Response Details
DayPackagesInfoResponse
| Json Property | Data Type | Description |
|---|---|---|
| day_package | DayPackageDetails | Day package details containing the booked appointments. |
| error | APIV2ErrorModel | Error details if the request fails; null on success. |
DayPackageDetails
| Json Property | Data Type | Description |
|---|---|---|
| description | string | Description of the day package. |
| appointments | List | List of appointments booked under the day package. |
DayPackageAppointmentInfo
| Json Property | Data Type | Description |
|---|---|---|
| appointment_id | Guid | Unique identifier of the appointment. |
| service | DayPackageServiceInfo | Service booked for this appointment. |
| price | decimal? | Service price for this appointment within the day package. |
| start_time | DateTime? | Appointment start time in the center's local timezone. |
| end_time | DateTime? | Appointment end time in the center's local timezone. |
| therapist | DayPackageTherapistInfo | Therapist assigned to the appointment. |
| room | DayPackageResourceInfo | Room assigned to the appointment. |
| equipment | DayPackageResourceInfo | Equipment assigned to the appointment. |
DayPackageServiceInfo
| Json Property | Data Type | Description |
|---|---|---|
| id | Guid | Unique identifier of the service. |
| name | string | Display name of the service. |
DayPackageTherapistInfo
| Json Property | Data Type | Description |
|---|---|---|
| id | Guid? | Unique identifier of the therapist. Null if no therapist is assigned. |
| name | string | Display name of the therapist. |
DayPackageResourceInfo
| Json Property | Data Type | Description |
|---|---|---|
| id | Guid? | Unique identifier of the resource. Null if the resource is not assigned. |
| name | string | Display name of the resource (room or equipment). |
APIV2ErrorModel
| Json Property | Data Type | Description |
|---|---|---|
| code | string | Application-specific error code. |
| message | string | Human-readable description of the error. |
