| |||||
API Home >> Creator API >> REST API >> REST API Methods >> Get Shared Details - POST Method
Get Shared Details - REST API - POST Method
Request Parameters
The request parameters comprises of the application name whose shared details needs to be retrieved.
| Field | Description |
| applinkname | [string] - The name of the application as specified in deluge script. Refer http://creator.zoho.com/api/reference to view the list of applications created and its deluge name. |
<form method=" POST " action="http://creator.zoho.com/api/xml/shared-details/apikey= [APIKEY] &ticket= [Ticket] ">
<input type="text" name="applinkname " value="Name of the application">
<input type="submit" value="Shared Details">
</form>
Note:
<input type="text" name="applinkname " value=" issue-manager ">
<response>
<application name="issue-manager">
<sharedto>
<userlist>
<username>ptkanvignesh</username>
<username>prem</username>
</userlist>
</sharedto>
</application>
</response>
"application":
{
"shared-to":
{
"userlist":
[
"ptkanvignesh","prem"
]
},
"name": "issue-manager"
}
}