Animal Health Data Store - V1 API Documentation
AHDS Store API (1.0)
https://docs.heydonto.com/_mock/apis/animal-health/openapi/
http://localhost:8083/
Optional list of field names to include in the webhook payload. If omitted or empty, the default payload for the event type is sent.
Whether the webhook is currently active and will receive events.
Destination URL that will receive webhook POST requests.
- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/webhook/{webhookId}
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/webhook/{webhookId}
- 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/webhook/{webhookId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"eventType": "example",
"extensions": {},
"fields": [
"string"
],
"isActive": true,
"webhookUrl": "https://example.com",
"description": "Example description"
}'Webhook replaced successfully
Timestamp when the webhook was created.
Optional list of field names to include in the webhook payload. If omitted or empty, the default payload for the event type is sent.
Whether the webhook is currently active and will receive events.
Timestamp when the webhook was last updated.
Canonical identifier for the webhook.
Destination URL that will receive webhook POST requests.
{ "createdAt": "2025-01-01T00:00:00.000Z", "eventType": "example", "extensions": {}, "fields": [ "string" ], "isActive": true, "updatedAt": "2025-01-01T00:00:00.000Z", "webhookId": "123e4567-e89b-12d3-a456-426614174000", "webhookUrl": "https://example.com", "description": "Example description" }
- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/webhook/{webhookId}
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/webhook/{webhookId}
- 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/webhook/{webhookId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'