Zoho API V2更新记录

时间:2018-07-15 21:12:56

标签: php json zoho

我正在尝试使用Zoho API版本2在Leads中进行简单的记录更新。我正在使用PHP和CURL,此调用的示例代码(用于更新记录中的单个字段)如下:-

$apiUrl = "https://www.zohoapis.com/crm/v2/Leads/" . {valid record id here};

$headers = array(
    'Content-Type: application/json',
    'Content-Length: ' . strlen($fields),
    sprintf('Authorization: Zoho-oauthtoken %s', {valid auth token here})
);

$fields = json_encode([["data" => ["City" => "Egham"]]]);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $apiUrl);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); 
curl_setopt($ch, CURLOPT_TIMEOUT, 60); 

$result = curl_exec($ch);

curl_close($ch); 

无论我如何格式化JSON,我总是会得到以下结果:

{"code":"INVALID_DATA","details": {"expected_data_type":"jsonobject"},"message":"body","status":"error"} 

这不是无效的身份验证令牌之类的问题,因为我已经成功地将PHP和CURL与Zoho API结合使用来读取数据,并且我成功解码了返回的JSON。

请帮助传递有效的JSON数据的人吗?

2 个答案:

答案 0 :(得分:3)

上面的代码像这样构造输入JSON [{"data":{"City":"Egham"}}]。根据{{​​1}}(API help),此JSON无效。

应该是这样的ZOHO CRM APIs

像这样更改代码:

{"data":[{"City":"Egham"}]}

答案 1 :(得分:0)

您必须将数据转义为JSON格式:

import json
response = requests.post(url, data=json.dumps(data), headers=headers)