Retrieve a list of bugs in the eTask project per Team/Channel.
--Cookie
, --x-appvity-teamid
, and --x-appvity-channelId
are required and --x-appvity-groupId
and --x-appvity-entityId
are not.
This operation returns by default only of all the available properties. To get the bug’s properties that are not returned by default, specify them in a $select
OData query option.
1 | GET /api/bugs [?<CommonODataExpression>] |
/api/bugs
GET.
Support OData Filter syntax.
1 | curl --location --request GET 'https://teams.appvity.com/api/bugs?t=1600055978590&$count=true&$top=16&$orderby=internalId%20desc' \ |
Success1
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104{
"@odata.context": "https://schema.appvity.com/odata/$metadata#tasks",
"value": [
{
"bucket": [
"5f62dad84d596392f54d2214"
],
"attachments": [],
"assignedTo": [
{
"_id": "5bce7df753b66e19aaa3e8a0",
"sourceId": "5083cb81-35f4-4abd-ba2d-e7b9965c1f89",
"displayName": "Oliver Neal",
"source": "Microsoft.Graph.User",
"username": "oliver@anadea.com"
}
],
"_id": "5f647a974d596392f55c6817",
"source": "Appvity.eTask",
"name": "A-Bug 4",
"owner": "Cora Rowland",
"severity": "Medium",
"priority": "Normal",
"status": "Not Started",
"body": "",
"startDate": "2020-09-01T17:00:00.000Z",
"dueDate": "2020-09-29T17:00:00.000Z",
"phase": "5f62da414d596392f54d220e",
"phaseName": "Phase 1",
"bucketName": "Story 1",
"projectId": {
"enableBug": true,
"_id": "5f5ed93a9669798c318eb6c7",
"displayName": "eSource"
},
"tenantId": "df7abg9c-c05a-4fc9-b958-64faered911d",
"createdAt": "2020-09-18T09:15:03.836Z",
"createdBy": {
"name": "Oliver Neal",
"username": "oliver@anadea.com",
"sourceId": "5083cb81-35f4-4abd-ba2d-e7b9965c1f89"
},
"updatedAt": "2020-09-18T09:15:03.855Z",
"teamId": "19:15c258785b4040699180e7a8ad6c6014@thread.tacv2",
"channelId": "19:15c258785b4040699180e7a8ad6c6014@thread.tacv2",
"groupId": "f87faa71-57a8-4c14-91f0-517f54645106",
"entityId": "eTask.30c4d651-af40-4739-f9a1-5da75d4fbb4b",
"sourceId": "5f647a974d596392f55c6817",
"statusId": {
"_id": "5f5ed9639669798c318eb76b",
"category": "New"
},
"internalId": 27,
"relatedItemCount": 0
},
{
"bucket": [],
"attachments": [],
"assignedTo": [
{
"_id": "5bce7df753b66e19aaa3e8a0",
"sourceId": "5083cb81-35f4-4abd-ba2d-e7b9965c1f89",
"displayName": "Oliver Neal",
"source": "Microsoft.Graph.User",
"username": "oliver@anadea.com"
}
],
"_id": "5f6470444d596392f55bcdee",
"source": "Appvity.eTask",
"name": "BUG 2",
"owner": "Cora Rowland",
"severity": "Medium",
"priority": "Normal",
"status": "In Progress",
"body": "",
"dueDate": "2020-09-29T17:00:00.000Z",
"projectId": {
"enableBug": true,
"_id": "5f5ed93a9669798c318eb6c7",
"displayName": "eSource"
},
"tenantId": "df7abg9c-c05a-4fc9-b958-64faered911d",
"createdAt": "2020-09-18T08:31:00.693Z",
"createdBy": {
"name": "Oliver Neal",
"username": "oliver@anadea.com",
"sourceId": "5083cb81-35f4-4abd-ba2d-e7b9965c1f89"
},
"updatedAt": "2020-09-18T08:31:00.712Z",
"teamId": "19:15c258785b4040699180e7a8ad6c6014@thread.tacv2",
"channelId": "19:15c258785b4040699180e7a8ad6c6014@thread.tacv2",
"groupId": "f87faa71-57a8-4c14-91f0-517f54645106",
"entityId": "eTask.30c4d651-af40-4739-f9a1-5da75d4fbb4b",
"sourceId": "5f6470444d596392f55bcdee",
"statusId": {
"_id": "5f5ed9639669798c318eb76c",
"category": "Active"
},
"internalId": 26,
"relatedItemCount": 0
}
],
"@odata.count": 4
}
Error
Code: 401 UNAUTHORIZED, 500 ERROR EXCEPTION.
Content: {error: “error message”}
Comment