| |||||
API Home >> Creator API >> REST API >> REST API Methods >> Change Access Privileges - POST Method
Change Access Privileges of Form/View - REST API - POST Method
Request Parameters
The request parameters comprises of the application name, the form/view name and the access type as given below:
| Field | Description |
| applinkname | [string] - The application name as specified in the deluge script. Refer http://creator.zoho.com/api/reference to view the list of applications created, , the form names and field names used in each application and the deluge field names. |
| componentname | [string]- The form name / view name whose access type needs to be changed |
| access | [string] - Specify the new access type as private / public |
<form method=" POST " action="http://creator.zoho.com/api/xml/formorview/changeaccess/apikey= [APIKEY] &ticket= [Ticket] ">
<input type="text" name=" applinkname " value=" application name ">
<input type="text" name="component name " value=" form/view name">
<input type="text" name="access " value="public/private">
<input type="submit" value="Change Access">
</form>
Note:
<input type="text" name=" applinkname " value=" employee-database ">
<input type="text" name=" component name " value=" employee">
<input type="text" name=" access " value=" public ">
<response>
<application name="employee-database">
<form name="employee">
<access>public</access>
<status>Success</status>
</form>
</application>
</response>
"form":
{
"access":"public",
"status":"Success",
"name":"employee"
},
"application-name":"employee-database"
}
If the access privilege is modified, the response message will be displayed with status as "Success".