Animal Health Data Store - V1 API Documentation
AHDS Store API (1.0)
https://docs.heydonto.com/_mock/apis/animal-health/openapi/
http://localhost:8083/
End date and time of the availability slot (RFC 3339, with timezone).
Indicates whether this slot is active and can be used for scheduling.
Location (clinic/branch) where this slot occurs.
Primary resource for this slot (e.g., veterinarian, room).
- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/availability-slot/{availabilitySlotId}
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/availability-slot/{availabilitySlotId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/availability-slot/{availabilitySlotId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"endAt": "2025-01-01T00:00:00.000Z",
"extensions": {},
"isActive": true,
"isBooked": true,
"locationId": "123e4567-e89b-12d3-a456-426614174000",
"notes": "Example description",
"resourceId": "123e4567-e89b-12d3-a456-426614174000",
"serviceType": {
"code": "12345",
"system": "http://example.com/codesystem",
"display": "Example Display Name"
},
"startAt": "2025-01-01T00:00:00.000Z"
}'Availability Slot replaced successfully
Canonical identifier for this availability slot.
Timestamp when this slot record was created.
End date and time of the availability slot (RFC 3339, with timezone).
Indicates whether this slot is active and can be used for scheduling.
Location (clinic/branch) where this slot occurs.
Primary resource for this slot (e.g., veterinarian, room).
Start date and time of the availability slot (RFC 3339, with timezone).
{ "availabilitySlotId": "123e4567-e89b-12d3-a456-426614174000", "createdAt": "2025-01-01T00:00:00.000Z", "endAt": "2025-01-01T00:00:00.000Z", "extensions": {}, "isActive": true, "isBooked": true, "locationId": "123e4567-e89b-12d3-a456-426614174000", "notes": "Example description", "resourceId": "123e4567-e89b-12d3-a456-426614174000", "serviceType": { "code": "12345", "system": "http://example.com/codesystem", "display": "Example Display Name" }, "startAt": "2025-01-01T00:00:00.000Z", "updatedAt": "2025-01-01T00:00:00.000Z" }
- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/availability-slot/{availabilitySlotId}
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/availability-slot/{availabilitySlotId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/availability-slot/{availabilitySlotId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'