$url = "https://apidocs.zoho.eu/files/v1/share/?authtoken=".$AUTHTOKEN."&scope=docsapi";
$fields = array(
'docids' => '4yfsme75c5a69e3be4ed9a78675997e8e644f',
'emailids' => 'example@mail.com',
'permission' => 'readwrite',
'notify' => true,
'message' => 'test msg'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_URL, $url );
$result = curl_exec($ch);
$information = curl_getinfo($ch);
curl_close($ch);
echo '<pre/>';
var_dump($result);
exit;
Writer is a powerful online word processor, designed for collaborative work.