校验三方审批实例
POST
https://open.feishu.cn/open-apis/approval/v4/external_instances/check
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 1390001 | param is invalid | 参数错误 |
400 | 1395001 | There have been some errors. Please try again later | 服务出现错误,请稍候再试 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.feishu.cn/open-apis/approval/v4/external_instances/check' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"instances": [
{
"instance_id": "1234234234242423",
"update_time": "1591603040000",
"tasks": [
{
"task_id": "112253",
"update_time": "1591603040000"
}
]
}
]
}'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"diff_instances": [
{
"instance_id": "1234234234242423",
"update_time": "1591603040000",
"tasks": [
{
"task_id": "112253",
"update_time": "1591603040000"
}
]
}
]
}
}
请求参数
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
Body 参数application/json
返回响应
修改于 2023-02-02 03:43:51