Creator API

REST API - Get Sharing Details

URL

https://creator.zoho.com/api/<format>/shared-details/

where <format> is the type of response format as listed below.

Formats

xml, json

HTTP Method

POST

Parameters

Parameter Name Usage Description
authtoken Required. A valid API authtoken. Refer https://api.creator.zoho.com/Generate-Auth-Token.html for generating authtoken
scope Required Specify the value as creatorapi
applinkname Required. The link name of your application, as can be referred to here

Prerequisites

Notes

  • Only the owner of the application can see sharing details.

Sample Request

<form method="POST" action="https://creator.zoho.com/api/xml/shared-details/">
<input type="hidden" name ="authtoken" value="************">
<input type="hidden" name ="scope" id="scope" value="creatorapi">
<input type="text" name ="applinkname" value="sample">
<input type="submit" value="Sharing Details">
</form>

Sample Response

XML response

<?xml version="1.0" encoding="UTF-8" ?>
response>
<application name="sample">
<sharedto>
<userlist>
<username>xxx</username>
<username>yyy</username>
</userlist>
</sharedto>
</application>
</response>

JSON response

{"application":{"shared-to":{"userlist":["xxx","yyy"]},"name":"sample"}}

Error Codes

If there is an error in the request format, the corresponding error code with error message will be displayed. Please refer to the topic Error codes and descriptions for the list of error codes. If the operation is successful, the response message will be displayed with status as "Success".

Top