使用REST API在ServiceNow的Epic或用户故事中设置引用字段的值,可以通过以下步骤实现:
https://your-instance.service-now.com/api/now/table/<table_name>?sysparm_query=<query_condition>
。其中,<table_name>
是目标表的名称,<query_condition>
是你希望使用的查询条件。通过对返回结果的分析,找到目标引用字段的sys_id。https://your-instance.service-now.com/api/now/table/<table_name>/<record_sys_id>
,其中<table_name>
是目标表的名称,<record_sys_id>
是要更新的记录的sys_id。{
"ref_field_name": "ref_field_sys_id"
}
其中,ref_field_name
是目标引用字段的名称,ref_field_sys_id
是步骤1中获取的引用字段的sys_id。
以下是一个示例请求的cURL命令:
curl -X PATCH \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_token>" \
-d '{
"ref_field_name": "ref_field_sys_id"
}' \
"https://your-instance.service-now.com/api/now/table/<table_name>/<record_sys_id>"
替换<your_token>
为你的访问令牌,<table_name>
为目标表的名称,<record_sys_id>
为要更新的记录的sys_id。
注意:以上示例中的ref_field_name
和ref_field_sys_id
需要替换为实际的引用字段名称和sys_id。
推荐的腾讯云相关产品和产品介绍链接地址可根据具体情况自行添加。
领取专属 10元无门槛券
手把手带您无忧上云