Retrieve the list of all statuses in the specified channel within a team.1
2
3
4GET odata/status
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
odata/status
GET.
This method supports the $filter and $select OData Filter to help customize the response.
Header1
2
3
4
5--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
Body
This method does not supply the request body.
If successful, this method returns a 200 OK
response code and the list of statuses object in the response 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{
"@odata.context":
"https://schema.appvity.com/odata/$metadata#status(_id,name,primary,color)",
"value": [
{
"_id": [StatusID],
"type": [entityType],
"name": "[Statusname],
"category": [Category],
"description": [StatusDescription],
"order":[OrderNo],
"value": [OrderNo],
"color": [ColorCode],
"primary": [true/false]
}
]
}
1 | { |
Error
Code: 401 UNAUTHORIZED, 500 ERROR EXCEPTION.
Content: {error: “error message”}
Comment