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 Configured Project endpoint. However, the Bucket of eSource is using a different endpoint.
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
--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:
[
{
"id": "[StoryID]",
"displayName": "[StoryName]",
"value": "[Value]",
"attributes": "[attributes]"
}
]
Example
[
{
"id": "34410",
"displayName": "Story 1",
"value": "34410",
"attributes": null
},
{
"id": "36499",
"displayName": "Story 2",
"value": "36499",
"attributes": null
}
]