Fetch View of a Specific Form API

To know the list of views available in a specific form, use the API below by specifying the formLinkName.

Request URL:

https://people.zoho.com/people/api/forms/<formLinkName>/views?

Header:

Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Scope:

ZOHOPEOPLE.forms.ALL
or
ZOHOPEOPLE.forms.READ

Possible Operation Types:

ALL - Full access to data
READ- Read form data

Request parameter:

formLinkNameTo get the formLinkName, refer appendix

Request

Copiedhttps://people.zoho.com/people/api/forms/department/views?

Request

Header

CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Response

Copied[{"viewName":"P_DepartmentView","displayName":"Department View","viewId":"6000000015699"},{"viewName":"Support","displayName":"Support","viewId":"6000000041003"}]
Copied<Response Status="1">
<Views>
<View>
<viewName>P_DepartmentView</viewName>
<displayName>Department View</displayName>
<viewId>6000000015699</viewId>
</View>
<View>
<viewName>Support</viewName>
<displayName>Support</displayName>
<viewId>6000000041003</viewId>
</View>
</Views>
</Response>