查询日程
POST
https://open.teambition.com/api/agenda/query
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.teambition.com/api/agenda/query' \
--header 'Authorization: Bearer <appAccessToken>' \
--header 'X-Tenant-Id: 50c32af35a87e6b2...' \
--header 'X-Tenant-Type: organization' \
--header 'Content-Type: application/json' \
--data-raw '{
"conds": {
"projectId":"5f114c208de9989edf6faf63"
}
}'
响应示例响应示例
{
"code": 200,
"errorMessage": "",
"result": [
{
"agendaId": "5f1151c3f4594639a62ba765",
"content": "",
"created": "2020-07-17T07:22:43.568Z",
"creatorId": "5ac4a9089f8f22000108241b",
"customfields": [],
"endDate": "2020-07-17T08:30:00.000Z",
"isDeleted": 0,
"location": "",
"orgId": null,
"participants": [
"5ac4a9089f8f22000108241b"
],
"projectId": "5f114c208de9989edf6faf63",
"startDate": "2020-07-17T07:30:00.000Z",
"tagIds": [],
"templateId": "5f114c201c686bc841ca84fa",
"title": "日程1",
"updated": "2020-07-17T07:22:43.568Z",
"visible": "projectMembers"
},
{
"agendaId": "5f1151da0aab42dceb734473",
"content": "",
"created": "2020-07-17T07:23:06.795Z",
"creatorId": "5ac4a9089f8f22000108241b",
"customfields": [],
"endDate": "2020-07-17T10:00:00.000Z",
"isDeleted": 0,
"location": "",
"orgId": null,
"participants": [
"5ac4a9089f8f22000108241b"
],
"projectId": "5f114c208de9989edf6faf63",
"startDate": "2020-07-17T09:00:00.000Z",
"tagIds": [],
"templateId": "5f114c201c686bc841ca84fa",
"title": "日程2",
"updated": "2020-07-17T07:23:06.795Z",
"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:44