Online Docs

Get Configured Project

Retrieve the configuration of eTask in the current channel. The return properties include all sources in current channel.

1
2
3
4
5
GET api/_configs/project
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
--data-binary [FilterObject]

URL Endpoint

api/_configs/project

Method

GET.

Parameters

No support OData Filter syntax.

Request

Header

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

x-appvity-channelId, x-appvity-teamid, Cookie is required.

Body

No body for this method.

Response

Success

Returns the list of configured sources.

Example

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
{
"@odata.context": "https://schema.appvity.com/odata/$metadata#projects(_id,source,displayName,tenantId,enableBug,projectName)",
"value": [
{
"_id": "5f5ed93a9669798c318eb6c7",
"enableBug": true,
"source": "Appvity.eTask",
"tenantId": "df7abg9c-c05a-4fc9-b958-64faered911d",
"displayName": "eSource"
},
{
"_id": "5f680e6d4d596392f55e0553",
"displayName": "",
"projectName": "J8 JIRA MAX eTask Official Test Project",
"source": "Jira",
"enableBug": true,
"tenantId": "df7abg9c-c05a-4fc9-b958-64faered911d"
},
{
"_id": "5f602de74d596392f53d4568",
"enableBug": true,
"source": "Microsoft.Planner",
"tenantId": "df7abg9c-c05a-4fc9-b958-64faered911d",
"displayName": "eTask API",
"projectName": "eTask API"
},
{
"_id": "5f602e074d596392f53d456c",
"displayName": "",
"projectName": "Z Anadea Project",
"source": "Microsoft.Vsts",
"enableBug": true,
"tenantId": "df7abg9c-c05a-4fc9-b958-64faered911d"
}
],
"@odata.count": 4
}

Comment

Was this article helpful?
Thanks For Your Feedback