1. Go to this page and download the library: Download marshmallow/zoho-desk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
marshmallow / zoho-desk example snippets
use Marshmallow\ZohoDesk\Facades\Ticket;
Ticket::setDueDate($ticket_id, now());
Ticket::comment($ticket_id, 'This comment should be added to this ticket', $public = false);
Ticket::attachment($ticket_id, $relative_storage_path);
use Marshmallow\ZohoDesk\Facades\Requests\Ticket;
Ticket::of($ticket_id)
->setDueDate(now())
->comment('This comment should be added to this ticket', $public = false)
->attachment($relative_storage_path)
->post();
use Marshmallow\ZohoDesk\Facades\ZohoDesk;
ZohoDesk::portal()->get('kbArticles/{articles_id}');