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/organization
https://api-staging.heydonto.com/organization
https://api.heydonto.com/organization
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization?clientAccountId=1&isEnabled=true&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=HealthCorp' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
List of organizations retrieved successfully.
Array of organizations
The ID of the client account the organization is associated with
The sites associated with the organization
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 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
Indicates whether synchronization is active
The ID of the user who manages the site
The cloud username for the site
The cloud user password 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 brands associated with the organization
The ID of the client account the brand is associated with
The date and time the brand was created
The date and time the organization was created
Pagination metadata
{ "data": [ { … } ], "meta": { "page": 0, "pageSize": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrevious": false } }
https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization
https://api-staging.heydonto.com/organization
https://api.heydonto.com/organization
curl -i -X POST \
https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "HealthCorp",
"website": "https://heydonto.com",
"isEnabled": true,
"clientAccountId": 123
}'
{ "title": "HealthCorp", "website": "https://heydonto.com", "isEnabled": true, "clientAccountId": 123 }
https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization/{organizationId}
https://api-staging.heydonto.com/organization/{organizationId}
https://api.heydonto.com/organization/{organizationId}
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization/{organizationId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "title": "HealthCorp", "website": "https://heydonto.com", "isEnabled": true, "clientAccountId": 123 }
https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization/{organizationId}
https://api-staging.heydonto.com/organization/{organizationId}
https://api.heydonto.com/organization/{organizationId}
curl -i -X PUT \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization/{organizationId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "HealthCorp",
"website": "https://heydonto.com",
"isEnabled": true,
"clientAccountId": 123
}'
{ "title": "HealthCorp", "website": "https://heydonto.com", "isEnabled": true, "clientAccountId": 123 }
https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization/{organizationId}
https://api-staging.heydonto.com/organization/{organizationId}
https://api.heydonto.com/organization/{organizationId}
curl -i -X DELETE \
'https://docs.heydonto.com/_mock/apis/heydonto/openapi/organization/{organizationId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'