15-day free trial. No credit card required.
3-user packMore than 3 users
USDINREURGBPJPYSGDAUDAEDSARMXNCNY
USDINRGBPEUR
Most Popular
Starter
Monthly flat fee for 3 users
(billed annually)
Sales tracking tool for small businesses.
Sign upStandard
Monthly flat fee for 3 users
(billed annually)
Sales tracking tool for small businesses.
Sign upMost Popular
We also offer a free edition - 3 users, 5,000 records and 1GB file storage.
Start your free trial.
or sign in usingGoogleLinkedin
上传文件
目的
上传ZIP格式的CSV文件以供批量编写API使用。响应包含file_id。在发出批量写入请求时使用此ID。
请求 URL
http://content.zohoapis.com.cn/crm/v2/upload
请求方法
POST
范围
scope=ZohoFiles.files.ALL
请求头部
头部名称 | 值 | 描述 |
---|---|---|
feature | bulk-write | 表示这是一个批量写入操作 |
X-CRM-ORG | org_id | 通过机构 API获取的机构唯一ID |
参数
参数名 | 数据类型 | 描述 |
---|---|---|
file (必填) | file | 选择要上传的zip文件 |
可能的错误
错误 | 消息 | 原因 |
---|---|---|
INVALID_FILE_FORMAT | 无效的文件格式。只支持zip格式 | 您上传的文件不是zip格式的。 |
FILE_TOO_LARGE | 文件大小太大,无法处理 | 文件大小大于25MB |
备注:
参考限制了解CSV文件的限制。
示例请求
在此输入中,"@file.csv.zip"包含ZIP格式的CSV文件。
curl "http://content.zohoapis.com.cn/crm/v2/upload"
-X POST
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
-H "X-CRM-ORG: 55xxxxxxxxxxxxxx51"
-H "feature: bulk-write"
-F "file=@file.csv.zip"
示例响应
{
"status": "success",
"code": "FILE_UPLOAD_SUCCESS",
"message": "file uploaded.",
"details": {
"file_id": "111111000001492610",
"created_time": "2018-12-31T12:00:00-12:00"
}
}