删除特定变量

目的

删除CRM中特定变量的详细信息。

请求URL

https://www.zohoapis.com.cn/crm/v2/settings/variables/{variable_id}

variable_id - Unique ID of the variable

请求方法

DELETE

范围

scope=ZohoCRM.settings.variables.{operation_type}

可能的操作类型
ALL - 完全访问变量数据
DELETE - 删除变量数据

示例请求


				curl "https://www.zohoapis.com.cn/crm/v2/settings/variables/40000000047010"
-X DELETE
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"			

示例响应


				{
    "variables": [
       {
            "code": "SUCCESS",
            "details": {
                "id": "40000000047003"
            },
            "message": "variable deleted",
            "status": "success"
        }
    ]
}