-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSettings.php
26 lines (26 loc) · 1.09 KB
/
Settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
namespace Dfe\ZohoBI;
/**
* 2017-07-06
* @see \Dfe\ZohoCRM\Settings
* @see \Dfe\ZohoInventory\Settings
*/
abstract class Settings extends \Dfe\Zoho\Settings {
/**
* 2017-07-07
* Note 1:
* «In Zoho Books / Zoho Inventory, your business is termed as an organization.
* If you have multiple businesses, you simply set each of those up as an individual organization.
* Each organization is an independent Zoho Books / Zoho Inventory Organization
* with it’s own organization ID, base currency, time zone, language, contacts, reports, etc.
* The parameter `organization_id` along with the organization ID
* should be sent in with every API request to identify the organization.
* The `organization_id` can be obtained from the `GET /organizations` API’s JSON response.»
* https://www.zoho.eu/books/api/v3/#organization-id
* https://www.zoho.eu/inventory/api/v1/#organization-id
* Note 2: The result is a natural number like «2723074» or «649147519».
* @used-by \Dfe\ZohoBI\API\Client::commonParams()
* @return int
*/
final function organization() {return $this->i();}
}