Appointments
Add Panels
Add blood test panels to an appointment
POST
Add one or more blood test panels to an existing appointment. You can call this endpoint multiple times to build up the panel selection before confirming the blood draw.
Request
Path parameters
Unique identifier (UUID) of the appointment to add panels to.
Body parameters
Array of panel UUIDs to add to the appointment. Must contain at least one item.
Response
On success, the API returns200 OK confirming the panels have been added.
true when the panels have been successfully added to the appointment.Error responses
| Status | Description |
|---|---|
400 | Validation error — e.g., panel_ids is empty or contains an invalid UUID. |
403 | Forbidden — your API key does not have access to this operation. |
404 | Appointment or one or more panels not found. |
409 | Conflict — panels cannot be added after the blood draw has been confirmed. |
500 | Internal server error. |