Associated User Count

Purpose

To retrieve the count of users under the territories in your organization.

Request Details

Request URL

{api-domain}/crm/{version}/settings/territories/actions/associated_users_count

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Scope

scope=ZohoCRM.settings.territories.All
(and)
scope=ZohoCRM.users.All

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v6/settings/territories/actions/associated_users_count"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"

Response JSON Keys

  • countnumber

    Represents the number of users associated to the territory.

  • territoryJSON Object

    Represents the name and ID of the territory.

Sample Response

Copied{
    "associated_users_count": [
        {
            "count": "1",
            "territory": {
                "name": "Zoho",
                "id": "431581000000272796"
            }
        },
        {
            "count": "2",
            "territory": {
                "name": "Chennai",
                "id": "431581000000744113"
            }
        },
        {
            "count": "1",
            "territory": {
                "name": "Chennai-South",
                "id": "431581000000744125"
            }
        },
        {
            "count": "1",
            "territory": {
                "name": "Chennai North",
                "id": "431581000000744137"
            }
        },
        {
            "count": "1",
            "territory": {
                "name": "Parent",
                "id": "431581000000744159"
            }
        },
        {
            "count": "1",
            "territory": {
                "name": "Child",
                "id": "431581000000744169"
            }
        },
        {
            "count": "1",
            "territory": {
                "name": "Chennai Leads",
                "id": "431581000000744183"
            }
        }
    ],
    "info": {
        "per_page": 200,
        "count": 7,
        "page": 1,
        "more_records": false
    }
}