HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 1390001 | param is invalid | 参数错误 |
400 | 1395001 | There have been some errors. Please try again later | 服务出现错误,请稍候再试 |
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"
}
]
}
]
}
}