PHP code example of imlolman / zohobooks

1. Go to this page and download the library: Download imlolman/zohobooks 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/ */

    

imlolman / zohobooks example snippets




ohoBooks\ZohoBooks; // For SDK initialization
use ZohoBooks\SDK\Contacts; // For Contacts API
use ZohoBooks\SDK\Invoices; // For Invoices API
// You can use any other API from the list of APIs in the SDK

// Retrive the config from .env file, database, or you can pass the config array directly
$config = [
  "CLIENT_ID" => "", // Your client id from Zoho Developer Console
  "CLIENT_SECRET" => "", // Your client secret from Zoho Developer Console
  "REDIRECT_URI" => "", // Your redirect uri from Zoho Developer Console
  "ACCESS_TOKEN" => "", // Your access token to be genetated using OAuth2
  "REFRESH_TOKEN" => "", // Your refresh token to be genetated using OAuth2
  "ORGANIZATION_ID" => "", // Your organization id from ZohoBooks
  "ACCESS_TOKEN_EXPIRY" => "", // Your access token to be genetated using OAuth2
  "ZOHO_BOOKS_DOMAIN" => "www.zohoapis.com", // Your ZohoBooks domain (default: www.zohoapis.com), can bewww.zohoapis.in,www.zohoapis.eu, etc.
]

// Initialize the SDK
$newConfig = ZohoBooks::init($config)->getConfig();

// If the access token is expired, it will automatically refresh the token
if ($newConfig['ACCESS_TOKEN_EXPIRY'] != $config['ACCESS_TOKEN_EXPIRY']) {
    // save it to the same location you have saved the config so that it can be used in the next request
}

// You can use any API from the list of APIs in the SDK
$contacts = new Contacts();
$contacts->list_contacts();

$invoices = new Invoices();
$invoices->list_invoices();

$contacts->create_a_contact([
  'contact_name' => 'John Doe',
  'company_name' => 'John Doe Company',
  'website' => 'https://johndoe.com',
  'billing_address' => [
    'address' => '123 Main St',
    'city' => 'New York',
    'state' => 'NY',
    'zip' => '10001',
    'country' => 'US',
  ],
  'shipping_address' => [
    'address' => '123 Main St',
    'city' => 'New York',
    'state' => 'NY',
    'zip' => '10001',
    'country' => 'US',
  ]
])

// For more information about the parameters, please refer to the official documentation at https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->create_a_sales_order($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->list_sales_orders();

$salesorders = new SalesOrders();
$salesorders->update_a_sales_order($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->get_a_sales_order($salesorderid);

$salesorders = new SalesOrders();
$salesorders->delete_a_sales_order($salesorderid);

$salesorders = new SalesOrders();
$salesorders->mark_a_sales_order_as_open($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->mark_a_sales_order_as_void($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->update_a_sales_order_sub_status($salesorderid, $statuscode, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->email_a_sales_order($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->get_sales_order_email_content($salesorderid);

$salesorders = new SalesOrders();
$salesorders->submit_a_sales_order_for_approval($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->approve_a_sales_order($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->bulk_export_sales_orders();

$salesorders = new SalesOrders();
$salesorders->bulk_print_sales_orders();

$salesorders = new SalesOrders();
$salesorders->update_billing_address($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->update_shipping_address($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->list_sales_order_templates();

$salesorders = new SalesOrders();
$salesorders->update_sales_order_template($salesorderid, $templateid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->add_attachment_to_a_sales_order($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->update_attachment_preference($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->get_a_sales_order_attachment($salesorderid);

$salesorders = new SalesOrders();
$salesorders->delete_an_attachment($salesorderid);

$salesorders = new SalesOrders();
$salesorders->add_comment($salesorderid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->list_sales_order_comments_and_history($salesorderid);

$salesorders = new SalesOrders();
$salesorders->update_comment($salesorderid, $commentid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$salesorders = new SalesOrders();
$salesorders->delete_a_comment($salesorderid, $commentid);

$organizations = new Organizations();
$organizations->create_an_organization($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$organizations = new Organizations();
$organizations->get_organization_details();

$organizations = new Organizations();
$organizations->delete_an_organization();

$organizations = new Organizations();
$organizations->get_organization($organizationid);

$organizations = new Organizations();
$organizations->update_organization($organizationid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankrules = new BankRules();
$bankrules->create_a_rule($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankrules = new BankRules();
$bankrules->get_rules_list();

$bankrules = new BankRules();
$bankrules->update_a_rule($ruleid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankrules = new BankRules();
$bankrules->get_a_rule($ruleid);

$bankrules = new BankRules();
$bankrules->delete_a_rule($ruleid);

$bankaccounts = new BankAccounts();
$bankaccounts->create_a_bank_account($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankaccounts = new BankAccounts();
$bankaccounts->list_view_of_accounts();

$bankaccounts = new BankAccounts();
$bankaccounts->update_bank_account($accountid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankaccounts = new BankAccounts();
$bankaccounts->get_account_details($accountid);

$bankaccounts = new BankAccounts();
$bankaccounts->delete_an_account($accountid);

$bankaccounts = new BankAccounts();
$bankaccounts->deactivate_account($accountid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankaccounts = new BankAccounts();
$bankaccounts->activate_account($accountid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankaccounts = new BankAccounts();
$bankaccounts->import_a_bank_credit_card_statement($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$bankaccounts = new BankAccounts();
$bankaccounts->get_last_imported_statement($accountid);

$bankaccounts = new BankAccounts();
$bankaccounts->delete_last_imported_statement($accountid, $statementid);

$projects = new Projects();
$projects->create_a_project($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->list_projects();

$projects = new Projects();
$projects->update_project($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->get_a_project($projectid);

$projects = new Projects();
$projects->delete_project($projectid);

$projects = new Projects();
$projects->activate_project($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->inactivate_a_project($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->clone_project($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->assign_users($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->list_users($projectid);

$projects = new Projects();
$projects->invite_user($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->update_user($projectid, $userid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->get_a_user($projectid, $userid);

$projects = new Projects();
$projects->delete_user($projectid, $userid);

$projects = new Projects();
$projects->post_comment($projectid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$projects = new Projects();
$projects->list_comments($projectid);

$projects = new Projects();
$projects->delete_comment($projectid, $commentid);

$projects = new Projects();
$projects->list_invoices($projectid);

$recurringbills = new RecurringBills();
$recurringbills->create_a_recurring_bill($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringbills = new RecurringBills();
$recurringbills->list_recurring_bills();

$recurringbills = new RecurringBills();
$recurringbills->update_a_recurring_bill($recurringbillid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringbills = new RecurringBills();
$recurringbills->get_a_recurring_bill($recurringbillid);

$recurringbills = new RecurringBills();
$recurringbills->delete_a_recurring_bill($recurringbillid);

$recurringbills = new RecurringBills();
$recurringbills->stop_a_recurring_bill($recurringbillid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringbills = new RecurringBills();
$recurringbills->resume_a_recurring_bill($recurringbillid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringbills = new RecurringBills();
$recurringbills->list_recurring_bill_history($recurringbillid);

$custommodules = new CustomModules();
$custommodules->create_custom_modules($modulename, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$custommodules = new CustomModules();
$custommodules->bulk_update_custom_module($modulename, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$custommodules = new CustomModules();
$custommodules->get_record_list_of_a_custom_module($modulename);

$custommodules = new CustomModules();
$custommodules->delete_custom_modules($modulename);

$custommodules = new CustomModules();
$custommodules->update_custom_module($modulename, $moduleid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$custommodules = new CustomModules();
$custommodules->get_individual_record_details($modulename, $moduleid);

$custommodules = new CustomModules();
$custommodules->delete_individual_records($modulename, $moduleid);

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->create_a_recurring_expense($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->list_recurring_expenses();

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->update_a_recurring_expense($recurringexpenseid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->get_a_recurring_expense($recurringexpenseid);

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->delete_a_recurring_expense($recurringexpenseid);

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->stop_a_recurring_expense($recurringexpenseid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->resume_a_recurring_expense($recurringexpenseid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->list_child_expenses_created($recurringexpenseid);

$recurringexpenses = new RecurringExpenses();
$recurringexpenses->list_recurring_expense_history($recurringexpenseid);

$invoices = new Invoices();
$invoices->create_an_invoice($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->list_invoices();

$invoices = new Invoices();
$invoices->update_an_invoice($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->get_an_invoice($invoiceid);

$invoices = new Invoices();
$invoices->delete_an_invoice($invoiceid);

$invoices = new Invoices();
$invoices->mark_an_invoice_as_sent($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->void_an_invoice($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->mark_as_draft($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->email_invoices($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->submit_an_invoice_for_approval($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/

$invoices = new Invoices();
$invoices->approve_an_invoice($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->email_an_invoice($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->get_invoice_email_content($invoiceid);
php
$invoices = new Invoices();
$invoices->remind_customer($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->get_payment_reminder_mail_content($invoiceid);
php
$invoices = new Invoices();
$invoices->bulk_invoice_reminder($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->bulk_export_invoices();
php
$invoices = new Invoices();
$invoices->bulk_print_invoices();
php
$invoices = new Invoices();
$invoices->disable_payment_reminder($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->enable_payment_reminder($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->write_off_invoice($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->cancel_write_off($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->update_billing_address($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->update_shipping_address($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->list_invoice_templates();
php
$invoices = new Invoices();
$invoices->update_invoice_template($invoiceid, $templateid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->list_invoice_payments($invoiceid);
php
$invoices = new Invoices();
$invoices->list_credits_applied($invoiceid);
php
$invoices = new Invoices();
$invoices->apply_credits($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->delete_a_payment($invoiceid, $invoicepaymentid);
php
$invoices = new Invoices();
$invoices->delete_applied_credit($invoiceid, $creditnotesinvoiceid);
php
$invoices = new Invoices();
$invoices->add_attachment_to_an_invoice($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->update_attachment_preference($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->get_an_invoice_attachment($invoiceid);
php
$invoices = new Invoices();
$invoices->delete_an_attachment($invoiceid);
php
$invoices = new Invoices();
$invoices->delete_the_expense_receipt($expenseid);
php
$invoices = new Invoices();
$invoices->add_comment($invoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->list_invoice_comments_and_history($invoiceid);
php
$invoices = new Invoices();
$invoices->update_comment($invoiceid, $commentid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$invoices = new Invoices();
$invoices->delete_a_comment($invoiceid, $commentid);
php
$contacts = new Contacts();
$contacts->create_a_contact($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->list_contacts();
php
$contacts = new Contacts();
$contacts->update_a_contact($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->get_contact($contactid);
php
$contacts = new Contacts();
$contacts->delete_a_contact($contactid);
php
$contacts = new Contacts();
$contacts->mark_as_active($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->mark_as_inactive($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->enable_portal_access($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->enable_payment_reminders($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->disable_payment_reminders($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->email_statement($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->get_statement_mail_content($contactid);
php
$contacts = new Contacts();
$contacts->email_contact($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->list_comments($contactid);
php
$contacts = new Contacts();
$contacts->add_additional_address($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->get_contact_addresses($contactid);
php
$contacts = new Contacts();
$contacts->edit_additional_address($contactid, $addressid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->delete_additional_address($contactid, $addressid);
php
$contacts = new Contacts();
$contacts->list_refunds($contactid);
php
$contacts = new Contacts();
$contacts->track_1099($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$contacts = new Contacts();
$contacts->untrack_1099($contactid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->create_a_vendor_credit($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->list_vendor_credits();
php
$vendorcredits = new VendorCredits();
$vendorcredits->update_vendor_credit($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->get_vendor_credit($vendorcreditid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->delete_vendor_credit($vendorcreditid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->convert_to_open($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->void_vendor_credit($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->submit_a_vendor_credit_for_approval($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->approve_a_vendor_credit($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->apply_credits_to_a_bill($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->list_bills_credited($vendorcreditid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->delete_bills_credited($vendorcreditid, $vendorcreditbillid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->refund_a_vendor_credit($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->list_refunds_of_a_vendor_credit($vendorcreditid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->update_vendor_credit_refund($vendorcreditid, $vendorcreditrefundid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->get_vendor_credit_refund($vendorcreditid, $vendorcreditrefundid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->delete_vendor_credit_refund($vendorcreditid, $vendorcreditrefundid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->list_vendor_credit_refunds();
php
$vendorcredits = new VendorCredits();
$vendorcredits->add_a_comment($vendorcreditid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$vendorcredits = new VendorCredits();
$vendorcredits->list_vendor_credit_comments_and_history($vendorcreditid);
php
$vendorcredits = new VendorCredits();
$vendorcredits->delete_a_comment($vendorcreditid, $commentid);
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->create_a_recurring_invoice($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->list_all_recurring_invoice();
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->update_recurring_invoice($recurringinvoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->get_a_recurring_invoice($recurringinvoiceid);
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->delete_a_recurring_invoice($recurringinvoiceid);
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->stop_a_recurring_invoice($recurringinvoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->resume_a_recurring_invoice($recurringinvoiceid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->update_recurring_invoice_template($recurringinvoiceid, $templateid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$recurringinvoices = new RecurringInvoices();
$recurringinvoices->list_recurring_invoice_history($recurringinvoiceid);
php
$expenses = new Expenses();
$expenses->create_an_expense($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$expenses = new Expenses();
$expenses->list_expenses();
php
$expenses = new Expenses();
$expenses->update_an_expense($expenseid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$expenses = new Expenses();
$expenses->get_an_expense($expenseid);
php
$expenses = new Expenses();
$expenses->delete_an_expense($expenseid);
php
$expenses = new Expenses();
$expenses->list_expense_history_and_comments($expenseid);
php
$expenses = new Expenses();
$expenses->create_an_employee($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$expenses = new Expenses();
$expenses->list_employees();
php
$expenses = new Expenses();
$expenses->get_an_employee($employeeid);
php
$expenses = new Expenses();
$expenses->delete_an_employee($employeeid);
php
$expenses = new Expenses();
$expenses->add_receipt_to_an_expense($expenseid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$expenses = new Expenses();
$expenses->get_an_expense_receipt($expenseid);
php
$expenses = new Expenses();
$expenses->delete_a_receipt($expenseid);
php
$currency = new Currency();
$currency->create_a_currency($data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$currency = new Currency();
$currency->list_currencies();
php
$currency = new Currency();
$currency->update_a_currency($currencyid, $data);
// Array Keys for $data can be found in Official documentation here: https://www.zoho.com/books/api/v3/
php
$currency = new Currency();
$currency->get_a_currency($currencyid);