我正在调用 / data / v1 / projects /:ProjectId:/ storage 端点为Data Management API创建新的存储条目,但我收到了无效/缺少参数。
所需标题&这次工作的主体是什么?
答案 0 :(得分:1)
使用
调用endpoint / data / v1 / projects /:ProjectId:/ storage部首:
'Authorization': 'Bearer ' + token,
'Content-Type': 'application/vnd.api+json',
'Accept': 'application/vnd.api+json'
体:
{
data: {
type: 'object',
attributes: {
name: theFileNameHere
},
relationships: {
target: {
data: {
type: 'folders',
id: folderIdHere
}
}
}
}
}
更多详情here