https://docs.heydonto.com/_mock/apis/heydonto/openapi/
https://api-staging.heydonto.com/
https://api.heydonto.com/
- Mock server
https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service
- Sandbox
https://api-staging.heydonto.com/dental-service
- Production
https://api.heydonto.com/dental-service
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "title": "Teeth Whitening", "isEnabled": true, "id": 123 } ]
- Mock server
https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service
- Sandbox
https://api-staging.heydonto.com/dental-service
- Production
https://api.heydonto.com/dental-service
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "Teeth Whitening",
"isEnabled": true
}'
{ "title": "Teeth Whitening", "isEnabled": true, "id": 123 }
- Mock server
https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service/{dentalServiceId}
- Sandbox
https://api-staging.heydonto.com/dental-service/{dentalServiceId}
- Production
https://api.heydonto.com/dental-service/{dentalServiceId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service/{dentalServiceId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "Teeth Whitening",
"isEnabled": true,
"id": 123
}'
{ "title": "Teeth Whitening", "isEnabled": true, "id": 123 }
- Mock server
https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service/{dentalServiceId}
- Sandbox
https://api-staging.heydonto.com/dental-service/{dentalServiceId}
- Production
https://api.heydonto.com/dental-service/{dentalServiceId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service/{dentalServiceId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'