Territories
Territory management helps you segregate CRM records based on customer attributes such as geography, company size, or industry. This makes it easy to share the relevant records with the right members of your sales team. Territory management allows you to automatically associate Accounts, Contacts, and Deals with territories to maximize revenue.
Users with Administrator profile can enable this feature in CRM UI.
Key Benefits
Avoid complex data-sharing structure - Organizations with complex sales structures can use territories to easily share records with users in different teams. It is also convenient to group records based on the account's characteristics rather than the individual ownership of the records.
Provide a focused work environment - Distribution of customer accounts by using territories help in creating focused work environments that ensures better sales force engagement. It also increases the sales teams' efficiency by reducing the travel time and increasing the industry expertise.
Get an accurate evaluation of the sales team's performance - Generate sales reports based on territories to evaluate and measure the efficiency of sales teams by territory. Also, get a better insight into the sales contribution of each territory.
Forecast sales for each territory and set clear goals - Create separate forecast targets for each territory a user belongs to. This will give a clear picture of the goals set for the different territories for users to stay focused.
Refer to Use Territories to learn more about territory management.
Territories API
Purpose
To get the list of territories enabled for your organization.
Request URL
https://www.zohoapis.com/crm/v2/settings/territories
Request Method
GET
Scope
scope=ZohoCRM.settings.territories.READ
Possible module names | Possible operation types |
---|---|
accounts, contacts, deals | ALL - Full access to the module WRITE - Edit records in a module READ - Get records in a module CREATE - Create records in a module UPDATE - Update records in a module |
To fetch records from a territory-supported module, use the parameters "territory_id" and "include_child" in the request. Refer to Get List of Records for more details.
Sample Request
Copiedcurl "https://www.zohoapis.com/crm/v2/settings/territories"
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
-X GET
Sample Response
Copied{
"territories": [
{
"created_time": "2019-04-10T14:27:50+05:30",
"modified_time": "2019-04-10T14:27:50+05:30",
"manager": {
"name": "Patricia Boyle",
"id": "554023000000235011"
},
"parent_id": null,
"criteria": null,
"name": "CRM",
"modified_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
},
"description": "Organization Parent Territory",
"id": "554023000000430341",
"created_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
}
},
{
"created_time": "2019-04-10T14:32:42+05:30",
"modified_time": "2019-04-26T11:24:31+05:30",
"manager": {
"name": "Boyle",
"id": "554023000000314027"
},
"parent_id": "554023000000430341",
"criteria": {
"comparator": "equal",
"field": "Billing_City",
"value": "Chennai"
},
"name": "Chennai",
"modified_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
},
"description": null,
"id": "554023000000430409",
"created_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
}
},
{
"created_time": "2019-04-10T15:17:43+05:30",
"modified_time": "2019-04-10T15:17:43+05:30",
"manager": {
"name": "Boyle",
"id": "554023000000314027"
},
"parent_id": "554023000000430409",
"criteria": {
"comparator": "equal",
"field": "Account_Site",
"value": "Chennai - South"
},
"name": "Chennai-South",
"modified_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
},
"description": null,
"id": "554023000000430451",
"created_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
}
},
{
"created_time": "2019-04-11T14:37:08+05:30",
"modified_time": "2019-04-26T11:32:15+05:30",
"manager": {
"name": "Boyle",
"id": "554023000000314027"
},
"parent_id": "554023000000430409",
"criteria": {
"comparator": "equal",
"field": "Account_Site",
"value": "Chennai-North"
},
"name": "Chennai-North",
"modified_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
},
"description": null,
"id": "554023000000439130",
"created_by": {
"name": "Patricia Boyle",
"id": "554023000000235011"
}
}
]
}