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
5GET api/tasks/getBucket/{source -code}/{source-id}
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
--data-binary [FilterObject] |
api/tasks/getBucket/{source -code}/{source-id}
Header1
2
3--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
No body for this method.
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]"
}
]
1 | [ |
Comment