更新日程
POST
https://open.teambition.com/api/agenda/update
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.teambition.com/api/agenda/update' \
--header 'Authorization: Bearer <appAccessToken>' \
--header 'X-Tenant-Id: 50c32af35a87e6b2...' \
--header 'X-Tenant-Type: organization' \
--header 'Content-Type: application/json' \
--data-raw '{
"agendaId": "5f1148630adf3408ab7bb560",
"title": "晨会",
"content": "xxx",
"location": "beijing",
"startDate": "2020-07-18T09:00:00Z",
"endDate": "2020-07-18T11:00:00Z"
}'
响应示例响应示例
{
"code": 200,
"errorMessage": "",
"result": {
"agendaId": "5f1148630adf3408ab7bb560",
"content": "xxx",
"created": "2020-07-17T06:42:43.452Z",
"creatorId": "5ac4a9089f8f22000108241b",
"customfields": [
{
"cfId": "5f1146dd1c686bc841ca84f0",
"value": [
{
"title": "test"
}
]
}
],
"endDate": "2020-07-18T11:00:00.000Z",
"isDeleted": 0,
"location": "beijing",
"participants": [
"5ac4a9089f8f22000108241b"
],
"projectId": "5f0ecba0eea1701e1fbc6884",
"startDate": "2020-07-18T09:00:00.000Z",
"tagIds": [
"5eaa8dbc3fd06609bda44816"
],
"title": "晨会",
"updated": "2020-07-17T06:52:43.452Z",
"visible": "projectMembers"
}
}
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
Authorization
string
可选
默认值:
{{Authorization}}
X-Tenant-Id
string
企业 ID
默认值:
{{X-Tenant-Id}}
X-Tenant-Type
string
可选
默认值:
organization
Body 参数application/json
返回响应
修改于 2021-12-28 10:48:24