JSON API » people » people/zohocrm/list
Gets the fields of all Zoho CRM user integrations for a customer.
Input parameters
Requires authentication and the user role privilege.
| Name | Type | Description | Required | Default value |
|---|---|---|---|---|
| auth_username | String | Authentication username. | Yes | |
| auth_password | String | Authentication password. | Yes | |
| count | Integer | 1 to return a count, 0 to return full data. | No | 0 |
| customer | Integer | ID of customer to get zohocrm for. | No | Customer of authentication user. |
Responses
| Code | Description |
|---|---|
| 200 | Success. |
| 400 | Invalid customer specified. |
| 401 | The authentication details provided are invalid. |
| 402 | Your role does not allow this. |
Data returned
An array of fields, corresponding to the rows of the zohocrm table in the database.
Example: With required and recommended parameters
http://enswitch.example.com/api/json/people/zohocrm/list/?auth_username=user;auth_password=password;customer=3{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":[ { "person":1, "access_token":"1000.342b...", ... }, { "person":2, "access_token":"1000.8ca2...", ... } ] }
Change history
| Version | Changes |
|---|---|
| 4.4 | Function added. |
