Online Docs

Get Monthly Workload Chart

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

URL Endpoint

api/charts/teamProgress/task/getMonthlyWorkload

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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"x": [
"Sep-2020"
],
"y": [
{
"channelId": "19:15c258785b4040699180e7a8ad6c6014@thread.tacv2",
"data": [
{
"Not Started": {
"value": 5,
"overdue": 0,
"category": "New"
},
"In Progress": {
"value": 2,
"overdue": 0,
"category": "Active"
},
"On Hold": {
"value": 0,
"overdue": 0,
"category": "Active"
},
"Completed": {
"value": 0,
"overdue": 0,
"category": "Done"
}
}
],
"color": "#16e754ff",
"displayName": "General",
"status": "New"
}
]
}

Comment

Was this article helpful?
Thanks For Your Feedback