HeyDonto API Documentation (1.0)

API documentation for HeyDonto API

Languages
Servers
Mock server
https://docs.heydonto.com/_mock/apis/heydonto/openapi/
Sandbox
https://api-staging.heydonto.com/
Production
https://api.heydonto.com/

AppointmentType

Operations

Brands

Operations

Dental Practices

Operations

Dental Services

Operations

Retrieve all dental services

Request

curl -i -X GET \
  https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

List of dental services retrieved successfully.

Bodyapplication/jsonArray [
titlestringrequired

The title of the dental service

Example: "Teeth Whitening"
isEnabledboolean

Indicates whether the dental service is enabled

Example: true
idnumberrequired

The ID of the dental service

Example: 123
]
Response
application/json
[ { "title": "Teeth Whitening", "isEnabled": true, "id": 123 } ]

Create a new dental service

Request

Bodyapplication/jsonrequired
titlestringrequired

The title of the dental service

Example: "Teeth Whitening"
isEnabledboolean

Indicates whether the dental service is enabled

Example: true
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
  }'

Responses

Dental service created successfully.

Bodyapplication/json
titlestringrequired

The title of the dental service

Example: "Teeth Whitening"
isEnabledboolean

Indicates whether the dental service is enabled

Example: true
idnumberrequired

The ID of the dental service

Example: 123
Response
application/json
{ "title": "Teeth Whitening", "isEnabled": true, "id": 123 }

Update an existing dental service

Request

Path
dentalServiceIdnumberrequired
Bodyapplication/jsonrequired
titlestringrequired

The title of the dental service

Example: "Teeth Whitening"
isEnabledboolean

Indicates whether the dental service is enabled

Example: true
idnumberrequired

The ID of the dental service to be updated

Example: 123
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
  }'

Responses

Dental service updated successfully.

Bodyapplication/json
titlestringrequired

The title of the dental service

Example: "Teeth Whitening"
isEnabledboolean

Indicates whether the dental service is enabled

Example: true
idnumberrequired

The ID of the dental service to be updated

Example: 123
Response
application/json
{ "title": "Teeth Whitening", "isEnabled": true, "id": 123 }

Delete a dental service

Request

Path
dentalServiceIdnumberrequired
curl -i -X DELETE \
  'https://docs.heydonto.com/_mock/apis/heydonto/openapi/dental-service/{dentalServiceId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Dental service deleted successfully.

Response
application/json
{ "message": "Unauthorized", "statusCode": 401 }

Organizations

Operations

Practice Management Systems

Operations

Sites

Operations

Codes

Operations

Site Assistants

Operations

Periomeasure

Operations