https://docs.heydonto.com/_mock/apis/heydonto/openapi/
https://api-staging.heydonto.com/
https://api.heydonto.com/
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands
https://api-staging.heydonto.com/brands
https://api.heydonto.com/brands
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands?clientAccountId=1&organizationId=1&page=0&pageSize=10&sortBy%5B0%5D%5Bdir%5D=asc&sortBy%5B0%5D%5Bfield%5D=id&sortBy%5B1%5D%5Bdir%5D=asc&sortBy%5B1%5D%5Bfield%5D=id&title=HeyDonto' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
List of brands retrieved successfully.
Array of brands
The client account of the brand
The organization the brand
The ID of the organization the brand is associated with
The title of the organization the brand is associated with
The ID of the client account the brand is associated with
The website of the organization the brand is associated with
Indicates whether the organization is enabled
The date and time the brand was created
The sites associated with the brand
The address information of the site
The latitude coordinate of the address
The longitude coordinate of the address
The URL associated with the address
The Google Place ID for the site
The phone number of the site
The website of the site
The AnyDesk IP address for remote access
The ID of the user who created the site
The date and time the site was created
The date and time the site was last updated
The date and time the site was deleted, if applicable
The ID of the organization the site belongs to
The ID of the client account the site is associated with
The ID of the brand the site is associated with
The ID of the practice management system used by the site
The license key for the site
The ID of the FHIR store associated with the site
The date of the first sync with the site
The date of the most recent sync with the site
The ID of the user who manages the site
The cloud username for the site
The name of the cloud organization for the site
The URL for cloud login
The practice management system used by the site
The ID of the practice management system
The title of the practice management system
Indicates whether the system is cloud-based
Indicates whether the system is enabled
The date and time the system was created
The date and time the brand was created
Pagination metadata
{ "data": [ { … } ], "meta": { "page": 0, "pageSize": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrevious": false } }
The ID of the organization the brand is associated with (if applicable)
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands
https://api-staging.heydonto.com/brands
https://api.heydonto.com/brands
curl -i -X POST \
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "HealthCorp",
"organizationId": 123,
"isEnabled": true,
"clientAccountId": 123
}'
{ "title": "HealthCorp", "organizationId": 123, "isEnabled": true, "clientAccountId": 123 }
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/list
https://api-staging.heydonto.com/brands/list
https://api.heydonto.com/brands/list
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/list?clientAccountId=string&title=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
List of brands retrieved successfully.
The client account of the brand
The organization the brand
The title of the organization the brand is associated with
The ID of the client account the brand is associated with
The website of the organization the brand is associated with
The date and time the brand was created
The sites associated with the brand
The address information of the site
The URL associated with the address
The Google Place ID for the site
The date and time the site was created
The date and time the site was last updated
The date and time the site was deleted, if applicable
The ID of the client account the site is associated with
The ID of the practice management system used by the site
The ID of the FHIR store associated with the site
The date of the first sync with the site
The date of the most recent sync with the site
The name of the cloud organization for the site
The URL for cloud login
The practice management system used by the site
The ID of the practice management system
The title of the practice management system
Indicates whether the system is cloud-based
Indicates whether the system is enabled
The date and time the system was created
[ { "id": 456, "title": "HealthCorp", "clientAccountId": 1, "clientAccount": { … }, "organization": { … }, "sites": [ … ], "isEnabled": true, "createdAt": "2021-05-01T12:00:00Z", "updatedAt": "2021-05-01T12:00:00Z" } ]
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/{brandId}
https://api-staging.heydonto.com/brands/{brandId}
https://api.heydonto.com/brands/{brandId}
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/{brandId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Brand retrieved successfully.
The client account of the brand
The organization the brand
The title of the organization the brand is associated with
The ID of the client account the brand is associated with
The website of the organization the brand is associated with
The date and time the brand was created
The sites associated with the brand
The address information of the site
The URL associated with the address
The Google Place ID for the site
The date and time the site was created
The date and time the site was last updated
The date and time the site was deleted, if applicable
The ID of the client account the site is associated with
The ID of the practice management system used by the site
The ID of the FHIR store associated with the site
The date of the first sync with the site
The date of the most recent sync with the site
The name of the cloud organization for the site
The URL for cloud login
The practice management system used by the site
The ID of the practice management system
The title of the practice management system
Indicates whether the system is cloud-based
Indicates whether the system is enabled
The date and time the system was created
{ "id": 456, "title": "HealthCorp", "clientAccountId": 1, "clientAccount": { "id": 123, "title": "Downtown Clinic" }, "organization": { "id": 123, "title": "HealthCorp", "clientAccountId": 123, "website": "www.healthcorp.com", "isEnabled": true, "createdAt": "2021-05-01T12:00:00Z", "updatedAt": "2021-05-01T12:00:00Z" }, "sites": [ { … } ], "isEnabled": true, "createdAt": "2021-05-01T12:00:00Z", "updatedAt": "2021-05-01T12:00:00Z" }
The ID of the organization the brand is associated with (if applicable)
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/{brandId}
https://api-staging.heydonto.com/brands/{brandId}
https://api.heydonto.com/brands/{brandId}
curl -i -X PUT \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/{brandId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "HealthCorp",
"organizationId": 123,
"isEnabled": true,
"clientAccountId": 123
}'
{ "title": "HealthCorp", "organizationId": 123, "isEnabled": true, "clientAccountId": 123 }
https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/{brandId}
https://api-staging.heydonto.com/brands/{brandId}
https://api.heydonto.com/brands/{brandId}
curl -i -X DELETE \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/brands/{brandId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'