Retrieves the list of Phase for each 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 phase of eSource is using a different endpoint.
1 | GET api/tasks/getPhase/{source -code}/{source-id} |
api/tasks/getPhase/{source -code}/{source-id}
1 | --x-appvity-channelId: [ChannelID] |
No body for this method.
Returns list of phases of a project from source following schema:1
2
3
4
5
6
7
8
9
10
11[
{
"id": "[PhaseID]",
"displayName": "[PhaseName]",
"value": "[PhaseValue]",
"sprintId": "[SprintID]",
"attributes": {
"key": "JJMEOTP-42"
}
}
]
“sprintId”: [SprintID] is displayed only when the source code is Jira
1 | [ |
Comment