Animal Health Data Store - V1 API Documentation
AHDS Store API (1.0)
https://docs.heydonto.com/_mock/apis/animal-health/openapi/
http://localhost:8083/
- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/taxrate
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/taxrate
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/taxrate?page=0&pageSize=10&sortBy=createdAt&sortOrder=asc&code=string&isActive=true&jurisdiction=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/taxrate/{taxrateId}
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/taxrate/{taxrateId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/taxrate/{taxrateId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Taxrate found
Timestamp when the tax rate record was created.
Whether this tax rate is currently active and can be used for billing.
Canonical unique identifier for the tax rate.
Timestamp when the tax rate record was last updated.
{ "code": "CODE-001", "createdAt": "2025-01-01T00:00:00.000Z", "extensions": {}, "isActive": true, "rate": 1.23, "taxrateId": "123e4567-e89b-12d3-a456-426614174000", "updatedAt": "2025-01-01T00:00:00.000Z", "jurisdiction": "Example description" }
- Mock server
https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/taxrate/{taxrateId}
- Local Development
http://localhost:8083/site/{siteId}/ahds/v1/taxrate/{taxrateId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.heydonto.com/_mock/apis/animal-health/openapi/site/{siteId}/ahds/v1/taxrate/{taxrateId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"code": "CODE-001",
"extensions": {},
"isActive": true,
"rate": 1.23,
"jurisdiction": "Example description"
}'Taxrate updated successfully
Timestamp when the tax rate record was created.
Whether this tax rate is currently active and can be used for billing.
Canonical unique identifier for the tax rate.
Timestamp when the tax rate record was last updated.
{ "code": "CODE-001", "createdAt": "2025-01-01T00:00:00.000Z", "extensions": {}, "isActive": true, "rate": 1.23, "taxrateId": "123e4567-e89b-12d3-a456-426614174000", "updatedAt": "2025-01-01T00:00:00.000Z", "jurisdiction": "Example description" }