更新指标项
PATCH
https://open.feishu.cn/open-apis/okr/v1/metric_sources/{metric_source_id}/tables/{metric_table_id}/items/{metric_item_id}
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
500 | 1009999 | Unknown error. Please contact Feishu Assistant or your customer success manager. | 内部错误,请联系飞书助手或您的客户成功经理 |
500 | 1009998 | system exception | 系统异常 |
200 | 1001001 | Invalid parameters. Please check document and modify accordingly. | 无效的参数,请对照文档检查输入的参数 |
200 | 1001002 | No permission. | 您无权访问该接口,请确认您的登录凭证 |
200 | 1001003 | User not found. | 用户不存在 |
200 | 1001004 | OKR data not found. | 对应ID的数据不存在 |
400 | 1001005 | update numbers exceeds limit | 更新数量超过限制 |
400 | 1001006 | start value equals target value | 起始值等于目标值 |
400 | 1001007 | table id match error | 表的 id 匹配错误 |
403 | 1000403 | OpenAPI is unavailable in current edition (Standard edition). Please update to Business edition. | 您目前的套餐无法使用开放平台接口功能,请升级至OKR企业版 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://open.feishu.cn/open-apis/okr/v1/metric_sources/7041857032248410131/tables/7041857032248410131/items/7041857032248410131?user_id_type=' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"metric_initial_value": 1.0,
"metric_target_value": 3.0,
"metric_current_value": 2.0,
"supported_user_id": "7041857032248410131"
}'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"metric_item_id": "635782378412311",
"user_id": "635782378412311",
"period_id": "635782378412311",
"metric_unit": {
"zh_cn": "小明",
"en_us": "jack",
"ja_jp": "シャオ・ミン"
},
"metric_initial_value": 10.01,
"metric_target_value": 10.01,
"metric_current_value": 10.01,
"supported_user_id": "ou_8e7d79ca2327bf4f0b3c37899d6abbd5",
"kr_id": "7139040982003302420",
"updated_at": "1663145941129",
"updated_by": "ou_8e7d79ca2327bf4f0b3c37899d6abbd5"
}
}
请求参数
Path 参数
metric_source_id
string
必需
示例值:
7041857032248410131
metric_table_id
string
必需
示例值:
7041857032248410131
metric_item_id
string
必需
示例值:
7041857032248410131
Query 参数
user_id_type
string
可选
union_id:标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的,在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID,应用开发商可以把同个用户在多个应用中的身份关联起来。了解更多:如何获取 Union ID?
user_id:标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内,一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。了解更多:如何获取 User ID?
默认值:open_id
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
Body 参数application/json
返回响应
修改于 2023-02-07 07:43:08