Creates a connection between the specified phase and story in a channel.1
2
3
4
5POST odata/phaseStoryLink
--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
--data-raw:{ "phaseId": [PhaseID], "storyId": [StoryID], "primary": [false/true] }
odata/phaseStoryLink
POST.
Do not supply OData Filter to help customize the response.
Header1
2
3--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
Body
In the request body, phaseId and storyId are need to required. By default, primary is false
1
2
3
4
5{
"phaseId": "[PhaseID]",
"storyId": "[StoryID]",
"primary": false
}
If successful, this method returns a 200 OK
response code and the list of priorities object in the response body.
Request
Response
1 | { |
Comment