对项目用户更新端点的补丁请求失败
Patch request to project user update endpoint fails
当我向 https://developer.api.autodesk.com/hq/v2/accounts/:account_id/projects/:project_id/users/:user_id
发出补丁请求时
并使用 industry_roles
属性传递角色 ID 列表,我得到以下响应:
{'code': 1001, 'message': 'users list about to be imported are empty or in wrong format.'}
有人知道为什么会这样吗?
我在请求中传递的正文是:
{
"company_id": <my company id>,
"industry_roles": [
<role id>,
<role id>
]
}
请确保数据以 JSON 和 content-type:application/json
header 的形式传递。
当我向 https://developer.api.autodesk.com/hq/v2/accounts/:account_id/projects/:project_id/users/:user_id
发出补丁请求时
并使用 industry_roles
属性传递角色 ID 列表,我得到以下响应:
{'code': 1001, 'message': 'users list about to be imported are empty or in wrong format.'}
有人知道为什么会这样吗?
我在请求中传递的正文是:
{
"company_id": <my company id>,
"industry_roles": [
<role id>,
<role id>
]
}
请确保数据以 JSON 和 content-type:application/json
header 的形式传递。