Territories are optionally included in customer records and are used with Accounts Receivable reports. They can be useful for filtering and categorizing data, assuming your company has multiple territories.
Returns up to 100 object references from the collection with a key, ID, and link for each territory. This operation is mostly for use in testing; use query to find objects that meet certain criteria and to specify properties that are returned.
Subscription | Company |
---|---|
User type | Business |
Permissions | List, View Territories |
OK
Bad Request
{- "ia::result": [
- {
- "key": "10",
- "id": "PNW",
- "href": "/objects/accounts-receivable/territory/10"
}, - {
- "key": "11",
- "id": "SW",
- "href": "/objects/accounts-receivable/territory/11"
}, - {
- "key": "12",
- "id": "ESB",
- "href": "/objects/accounts-receivable/territory/12"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Creates a new territory.
Subscription | Company |
---|---|
User type | Business |
Permissions | List, View, Add Territories |
id | string Unique identifier for the territory. After an ID is created, it cannot be modified. Example: "T1" | ||||
name | string Name of the territory. Example: "Southwest US" | ||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" | ||||
object Parent territory if territories are organized in a hierarchy. | |||||
| |||||
object Employee who manages the territory. Used for informational purposes only. | |||||
|
Created
Bad Request
{- "id": "T-12",
- "name": "Territory India",
- "parent": {
- "id": "12755"
}, - "manager": {
- "id": "Raser"
}, - "status": "active"
}
{- "ia::result": {
- "key": "19",
- "id": "T-12",
- "href": "/objects/accounts-receivable/territory/19"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified territory.
Subscription | Company |
---|---|
User type | Business |
Permissions | List, View Territories |
key required | string System-assigned key for the territory. Example: 58 |
OK
Bad Request
{- "ia::result": {
- "key": "17",
- "id": "TT-SW",
- "name": "Southwest",
- "parent": {
- "id": "TT-US",
- "key": "14",
- "href": "/objects/accounts-receivable/territory/14"
}, - "manager": {
- "key": "5",
- "id": "dwilson",
- "href": "/objects/company-config/employee/5"
}, - "status": "active",
- "href": "/objects/accounts-receivable/territory/17"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing territory by setting field values. Any fields not provided remain unchanged.
Subscription | Company |
---|---|
User type | Business |
Permissions | List, View, Edit Territories |
key required | string System-assigned key for the territory. Example: 58 |
name | string Name of the territory. Example: "Southwest US" | ||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" | ||||
object Parent territory if territories are organized in a hierarchy. | |||||
| |||||
object Employee who manages the territory. Used for informational purposes only. | |||||
|
OK
Bad Request
{- "name": "Southwest United States"
}
{- "ia::result": {
- "key": "17",
- "id": "TT-SW",
- "href": "/objects/accounts-receivable/territory/17"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes a territory. A territory can be deleted if it hasn't been associated with a customer, transaction, or other record.
Subscription | Company |
---|---|
User type | Business |
Permissions | List, View, Delete Territories |
key required | string System-assigned key for the territory. Example: 58 |
No Content
Bad Request
{- "ia::result": {
- "ia::error": {
- "code": "invalidRequest",
- "message": "A POST request requires a payload",
- "errorId": "REST-1028",
- "additionalInfo": {
- "messageId": "IA.REQUEST_REQUIRES_A_PAYLOAD",
- "placeholders": {
- "OPERATION": "POST"
}, - "propertySet": { }
}, - "supportId": "Kxi78%7EZuyXBDEGVHD2UmO1phYXDQAAAAo"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 0,
- "totalError": 1
}
}
Queries an object for filtered data.
object | string Object type to query, in the form Example: "accounts-receivable/territory" | ||||||||
fields | Array of strings List of fields to include in the response. Can be any combination of these:
Example: ["key","id","max:vendor.creditLimit"] | ||||||||
Array of equal (object) or not equal (object) or less than (object) or (less than or equal (object)) or greater than (object) or (greater than or equal (object)) or in (object) or not in (object) or between (object) or not between (object) or contains (object) or does not contain (object) or starts with (object) or does not start with (object) or ends with (object) or does not end with (object) Filter conditions to select the objects to return based on their field values. You use operators and conditions to build your filter, such as Example: [{"$eq":{"status":"active"}},{"$gt":{"totalDue":"1000"}},{"$contains":{"name":"Acme"}}] | |||||||||
Array Any of: Field value must be equal to this specified value. For date fields, you can use these macro values that are relative to the current date or the
These are most useful for queries that you want to save and use repeatedly, such as for views or reports. Just change the For example,
| |||||||||
filterExpression | string Default: "and" Logical operators to apply when there are multiple filter conditions. The conditions in the Shortcuts:
Example: "(1 and 2) or 3" | ||||||||
| |||||||||
Array of objects Set the order of the results by specifying field names to sort by and whether they should be in ascending or descending order. Example: [{"totalDue":"asc"},{"lastPaymentMadeDate":"desc"}] | |||||||||
Array
| |||||||||
start | integer First record of the result set to include in the response. Example: 1 | ||||||||
size | integer Number of records to include in the response. Example: 100 |
OK
Bad Request
{- "object": "accounts-receivable/territory",
- "filters": [
- {
- "$eq": {
- "status": "active"
}
}
], - "fields": [
- "id",
- "key",
- "name",
- "manager.id",
- "href"
], - "orderBy": [
- {
- "id": "asc"
}
]
}
{- "ia::result": [
- {
- "id": "PNW",
- "key": "1",
- "name": "Pacific NW",
- "manager.id": "dwilks",
- "href": "/objects/accounts-receivable/territory/1"
}, - {
- "id": "SW",
- "key": "2",
- "name": "Southwest United States",
- "manager.id": "1",
- "href": "/objects/accounts-receivable/territory/2"
}, - {
- "id": "CAM",
- "key": "3",
- "name": "Central America",
- "manager.id": "dwilks",
- "href": "/objects/accounts-receivable/territory/3"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}