JSON API » people » people/zohocrm/list

Gets the fields of all Zoho CRM user integrations for a customer.

Input parameters

Requires authentication and the administrator role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
countInteger1 to return a count, 0 to return full data.No0
customerIntegerID of customer to get zohocrm for.NoCustomer of authentication user.

Responses

CodeDescription
200Success.
400Invalid customer specified.
401The authentication details provided are invalid.
402Your 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

VersionChanges
4.4Function added.