Sample Response :
The following is a response (both in XML & JSON) for share document method:
XML
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/shareBook">
<result>
<workbookId>15265000000006107</workbookId>
<workbookName>Financials</workbookName>
<sharedto>
<user>"derrick"</user>
<user>"simon"</user>
<user>"martha"</user>
</sharedto>
</result>
</response>
JSON
{
"response":
{
"uri": "/api/private/json/shareBook",
"result":
{
"workbookId":"15265000000006107",
"workbookName":"Financials",
"sharedto":
{
"user":
[
{"derrick"}, {"simon"}, {"martha"}
]
}
}
}
}