获取特定标签的记录计数
目的
获取标签下记录的总数。
请求URL
https://www.zohoapis.com.cn/crm/v2/settings/tags/{tag_id}/actions/records_count?module={module_api_name}
module_api_name - 模块的API名称。
tag_id - 标签的唯一ID。
请求方法
GET
范围
scope=ZohoCRM.settings.all
(或)
scope=ZohoCRM.settings.tags.all
(或)
scope=ZohoCRM.settings.tags.read
参数
参数名称 | 数据类型 | 描述 |
---|---|---|
module (必填) | 字符串 | 指定模块的API名称,如leads、Contacts、Accounts、Deals等。 |
示例请求
curl "https://www.zohoapis.com.cn/crm/v2/settings/tags/2000000039007/actions/records_count?module=Contacts"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
示例响应
{
"count": "28"
}
示例请求
/** 获取特定标签的记录计数 */
$zcrmModuleIns=ZCRMModule::getInstance("Leads");
$apiResponse = $zcrmModuleIns->getTagCount("3372164000001521001"); //3372164000001521001 标签ID
$tag=$apiResponse->getData(); //$tag - ZCRMTag实例
示例响应
{
"count": "28"
}
示例请求
ZCRMModule moduleIns = ZCRMModule.GetInstance("Leads"); //模块API名称
APIResponse count = moduleIns.GetTagCount(3372164000001521002); //3372164000001521002 标签ID
ZCRMTag tagcount = (ZCRMTag)count.Data;
示例响应
{
"count": "28"
}