下载附件
目的
下载附加到记录上的文件。
请求URL
https://www.zohoapis.com.cn/crm/v2/{module_api_name}/{record_id}/Attachments/{attachment_id}
module_api_name - 模块的API名称
record_id - 记录的唯一ID
attachment_id - 附件的唯一ID
在获取附件列表中支持的模块在这里也支持。
请求方法
GET
范围
scope=ZohoCRM.modules.all
(或)
scope=ZohoCRM.modules.{module_name}.{operation_type}
(和) scope=ZohoCRM.modules.attachments.all
可能的模块名称 | 可能的操作类型 |
---|---|
线索,客户,联系人,商机,市场活动,任务,服务支持,事件,通话,解决方案,产品,供货商,价格表,报价单,销售订单,采购订单,发货单,自定义模块和备注 | ALL - 完全访问附件 READ - 获取附件数据 |
示例请求
所需文件将被下载。
curl "https://www.zohoapis.com.cn/crm/v2/Leads/100023009/Attachments/100013547"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
示例请求
ZCRMRecord record = ZCRMRecord.getInstance("Products",12345l); //模块API名称和记录ID
FileAPIResponse response = record.downloadAttachment(456789l); //附件ID
InputStream inputStream = response.getFileAsStream();
CommonUtil.saveStreamAsFile(inputStream, "/absolute/path/to/store/file",response.getFileName());
示例请求
try{
$record=ZCRMRecord::getInstance(“Accounts”,410405000001519001);
$fileResponseIns=$record->downloadAttachment(410405000001519501); // 410405000001519501 - 附件ID
$fp=fopen($filePath.$fileResponseIns->getFileName(),"w"); // $filePath - 必须存储下载文件的绝对路径。
echo "HTTP Status Code:".$fileResponseIns->getHttpStatusCode();
echo "File Name:".$fileResponseIns->getFileName();
$stream=$fileResponseIns->getFileContent();
fputs($fp,$stream);
fclose($fp);
}catch (ZCRMException $e)
{
echo $e->getMessage();
echo $e->getExceptionCode();
echo $e->getCode();
}
示例请求
def download_attachment(self):
try:
record=ZCRMRecord.get_instance('Leads',1386586000001856002)
resp=record.download_attachment(1386586000001856008)
print resp.response_headers
if resp.status_code==200:
print resp.file_name
with open('/Users/Downloads/'+resp.file_name, 'wb') as f:
for chunk in resp.response:
f.write(chunk)
f.close()
except ZCRMException as ex:
print ex.status_code
print ex.error_message
print ex.error_code
print ex.error_details
print ex.error_content
示例请求
ZCRMRecord recordIns = ZCRMRecord.GetInstance("Leads", 3372164000000614001); //模块API名称和记录ID
FileAPIResponse response = recordIns.DownloadAttachment(3372164000001624007); //附件ID
Stream file = response.GetFileAsStream();
CommonUtil.SaveStreamAsFile("FilePath", file, response.GetFileName());