创建浮动图片
POST
/open-apis/sheets/v3/spreadsheets/{spreadsheet_token}/sheets/{sheet_id}/float_images
自建应用商店应用
浮动图片的设置参考:浮动图片指南
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 1310229 | Wrong URL Param | 检查 url 参数 |
400 | 1310217 | Too Many Request | 检查请求是否发送过于频繁 |
400 | 1310235 | Retry Later | 稍后重试 |
500 | 1315201 | Server Error | 服务内部错误,详询客服 |
400 | 1310214 | SpreadSheet Not Found | 检查表格 token |
400 | 1310213 | Permission Fail | 没有文档相应权限 |
400 | 1310215 | Sheet Id Not Found | 检查 sheet_id |
400 | 1310202 | Wrong Range | 区域范围错误 |
400 | 1310245 | Wrong Float Image Token | 检查 Float Image Token |
400 | 1310244 | Exist Float Image Id | 检查 Float Image Id |
400 | 1310243 | Wrong Float Image Id | 检查 Float Image Id |
400 | 1310211 | Wrong Sheet Id | 检查 sheet_id |
400 | 1310247 | Image Excess | 图片总数超出限制 |
400 | 1310246 | Wrong Float Image Value | 图片宽高或者偏移错误 |
400 | 1310218 | Locked Cell | 检查操作的是否为保护范围 |
400 | 1310226 | Excess Limit | 超出限制,参考响应体中的错误提示 |
400 | 1310242 | In Mix state | Retey Later |
500 | 1315203 | Server Error | 服务内部错误,详询客服 |
400 | 1310249 | Spreadsheet Deleted | 恢复表格后重试 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.feishu.cn/open-apis/sheets/v3/spreadsheets/shtcnmBA*****yGehy8/sheets/0b**12/float_images' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"float_image_id": "ye06SS14ph",
"float_image_token": "boxbcbQsaSqIXsxxxxx1HCPJFbh",
"range": "0b**12!A1:A1",
"width": 100,
"height": 100,
"offset_x": 0,
"offset_y": 0
}'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"float_image": {
"float_image_id": "ye06SS14ph",
"float_image_token": "boxbcbQsaSqIXsxxxxx1HCPJFbh",
"range": "0b**12!A1:A1",
"width": 100,
"height": 100,
"offset_x": 0,
"offset_y": 0
}
}
}
请求参数
Path 参数
spreadsheet_token
string
必需
示例值:
shtcnmBA*****yGehy8
sheet_id
string
必需
示例值:
0b**12
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
Body 参数application/json
返回响应
修改于 2023-01-18 06:42:46