Online Docs

Get Status Chart

1
2
3
4
5
POST api/charts/teamProgress/task/getStatus
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
--data-binary [FilterObject]

URL Endpoint

api/charts/teamProgress/task/getStatus

Method

POST.

Parameters

No support OData Filter syntax.

Request Header

1
2
3
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]

Body

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"xAxisFields": "priority",
"offset": "Asia/Bangkok",
"globalFilters": {
"channelFilter": [],
"standardizeBy": {},
"dateFilter": {
"filter": "(startDate ge '$date:2020-09-30T17:00:00z' and startDate le '$date:2020-12-31T16:59:59z')",
"filterBy": "startDate",
"startDate": "2020-09-30T17:00:00z",
"dueDate": "2020-12-31T16:59:59z",
"timeFrame": "lastCurrentNextMonth"
},
"sourceFilter": {
"filter": "",
"choices": []
},
"priorityFilter": {
"filter": "",
"choices": []
},
"statusFilter": {
"filter": "",
"choices": []
},
"severityFilter": {
"filter": "",
"choices": []
},
"assignTo": []
}
}

Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"x": [
"Not Started",
"In Progress",
"On Hold",
"Completed"
],
"y": [
5,
2,
0,
0
]
}

Comment

Was this article helpful?
Thanks For Your Feedback