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=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
List of brands retrieved successfully.
The title of the organization the brand is associated with (if applicable)
The ID of the organization the brand is associated with (if applicable)
Indicates whether a new organization is being added for the brand
[ { "title": "HealthCorp", "organizationTitle": "Global Health Group", "organizationId": 123, "isAddingNewOrganization": true, "isEnabled": true } ]
The title of the organization the brand is associated with (if applicable)
The ID of the organization the brand is associated with (if applicable)
Indicates whether a new organization is being added for the brand
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",
"organizationTitle": "Global Health Group",
"organizationId": 123,
"isAddingNewOrganization": true,
"isEnabled": true
}'
Brand created successfully.
The title of the organization the brand is associated with (if applicable)
The ID of the organization the brand is associated with (if applicable)
Indicates whether a new organization is being added for the brand
{ "title": "HealthCorp", "organizationTitle": "Global Health Group", "organizationId": 123, "isAddingNewOrganization": true, "isEnabled": true }
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 title of the organization the brand is associated with (if applicable)
The ID of the organization the brand is associated with (if applicable)
Indicates whether a new organization is being added for the brand
{ "title": "HealthCorp", "organizationTitle": "Global Health Group", "organizationId": 123, "isAddingNewOrganization": true, "isEnabled": true }
The title of the organization the brand is associated with (if applicable)
The ID of the organization the brand is associated with (if applicable)
Indicates whether a new organization is being added for the brand
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",
"organizationTitle": "Global Health Group",
"organizationId": 123,
"isAddingNewOrganization": true,
"isEnabled": true,
"id": 456
}'
Brand updated successfully.
The title of the organization the brand is associated with (if applicable)
The ID of the organization the brand is associated with (if applicable)
Indicates whether a new organization is being added for the brand
{ "title": "HealthCorp", "organizationTitle": "Global Health Group", "organizationId": 123, "isAddingNewOrganization": true, "isEnabled": true, "id": 456 }
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>'