Online Docs

Get buckets/stories of selected source

Retrieves the list of stories/buckets for each project from source.

eTask supports 4 types of sources, each of which {source} and {source-id}correspond to _id and source properties in the Get ConfiguredProject endpoint. However, the Bucket of eSource is using a different endpoint.

1
2
3
4
5
GET api/tasks/getBucket/{source -code}/{source-id}
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
--data-binary [FilterObject] |

URL Endpoint

api/tasks/getBucket/{source -code}/{source-id}

Request

Header

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

Body

No body for this method.

Response

Returns list of bucket or stories of a source following schema:

1
2
3
4
5
6
7
8
[
{
"id": "[StoryID]",
"displayName": "[StoryName]",
"value": "[Value]",
"attributes": "[attributes]"
}
]

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[
{
"id": "34410",
"displayName": "Story 1",
"value": "34410",
"attributes": null
},
{
"id": "36499",
"displayName": "Story 2",
"value": "36499",
"attributes": null
}
]

Comment

Was this article helpful?
Thanks For Your Feedback