获取变量组数据

目的

获取任何变量组的详细信息。在API请求中指定变量的惟一ID,以获取特定变量组的数据。

请求URL

https://www.zohoapis.com.cn/crm/v2/settings/variable_groups/{variable_group_id}

variable_id - 变量的唯一ID

请求方法

GET

范围

scope=ZohoCRM.settings.variable_groups.{operation_type}

 
可能的操作类型
ALL - 完全访问变量数据
READ - 获取变量数据

示例请求:使用变量组ID


				curl "https://www.zohoapis.com.cn/crm/v2/settings/variable_groups/40000000047003"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"			

示例响应:对于变量组ID


				{
    "variable_groups": [
       {
            "display_label": "General",
            "api_name": "General",
            "name": "General",
            "description": null,
            "id": "40000000039001"
        },
       {
            "display_label": "Group1",
            "api_name": "Group1",
            "name": "Group1",
            "description": null,
            "id": "40000000047001"
        },
       {
            "display_label": "Group2",
            "api_name": "Group2",
            "name": "Group2",
            "description": null,
            "id": "40000000047005"
        },
       {
            "display_label": "Group3",
            "api_name": "Group3",
            "name": "Group3",
            "description": "This describes variable 3",
            "id": "40000000042001"
        },
       {
            "display_label": "Group4",
            "api_name": "Group4",
            "name": "Group4",
            "description": null,
            "id": "40000000042002"
        },
       {
            "display_label": "MyCustsdomGroup",
            "api_name": "MyCustsdomGroup",
            "name": "MyCustsdomGroup",
            "description": null,
            "id": "40000000044003"
        },
       {
            "display_label": "Variable6",
            "api_name": "VariableSix",
            "name": "Variable6",
            "description": "On the sea shore",
            "id": "40000000044001"
        }
    ]
}			

示例请求:使用变量组API名称


				curl "https://www.zohoapis.com.cn/crm/v2/settings/variable_groups/Group3"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"			

示例响应:对于变量组API名称


				{
    "variable_groups": [
       {
            "display_label": "Group3",
            "api_name": "Group3",
            "name": "Group3",
            "description": "This describes variable 3",
            "id": "40000000042001"
        }
    ]
}