get https://api.zenoti.com/v1/centers//services//therapists?
This API allows you to retrieve the details of all the therapists who can perform a particular service at a center. We can also filter on the basis of whether the catalog for the therapist is enabled or not.
Response Object
Name | Type | Description |
---|---|---|
meta_data | Object | Object containing all the meta data information of the API. |
therapists | Object | Object containing all the information regarding the therapists of the center. |
Meta-data Object
Name | Type | Description |
---|---|---|
any_min | int | Minimum duration of a service if "Any" therapist is selected. |
any_max | int | Maximum duration of a service if "Any" therapist is selected. |
male_min | int | Minimum duration of service if "Male" therapist is selected. |
male_max | int | Maximum duration of a service if "Male" therapist is selected. |
female_min | int | Minimum duration of service if "Female" therapist is selected. |
female_max | int | Maximum duration of service if "Female" therapist is selected. |
has_male_therapists | bool | True = If the center has any available male therapists. False = If the center does not have any available male therapists. |
has_female_therapists | bool | True = If the center has any available female therapists. False = If the center does not have any available female therapists. |
Therapist Object
Name | Type | Description |
---|---|---|
id | guid | Unique identifier of the therapist. |
display_name | string | The display name of the therapist. |
string | Email address of the therapist. | |
FirstName | string | First name of the therapist. |
gender | string | Gender of the therapist. |
image_paths | string | URL of the image of the therapist. |
last_name | string | Last name of the therapist. |
middle_name | string | Middle name of the therapist. |
nick_name | string | Nick name of the therapist. |
price | int | Price scaling information of the chosen therapist. |
service_time | int | Time within which the therapist can perform the service. |
is_catalog_enabled | bool | True = Catalog is enabled for the therapist. False = Catalog is disabled for the therapist. |
Error Object
code | message |
---|---|
AP008 | Invalid service id |
GE003 | Invalid center id |