| |||||
API Home >> Creator API >> REST API >> REST API Methods >> Change Access Privileges- POST Method
Change Access Privileges of Application - REST API - POST Method
Request Parameters
The request parameters comprises of the application 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. |
| access | [string] - Specify the new access type as private / public |
<form method=" POST " action="http://creator.zoho.com/api/xml/application/changeaccess/apikey= [APIKEY] &ticket= [Ticket] ">
<input type="text" name=" applinkname " value="application 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=" access " value=" public ">
<response>
<application name="employee-database">
<access>public</access>
<status>Success</status>
</application>
</response>
"application":
{
"access":"public",
"status":"Success",
"name":"employee-database"
}
}
If the access privilege is modified, the response message will be displayed with status as "Success".