Get Information About Stage rpa.stage.get
Scope:
rpaWho can execute the method: any user
The method retrieves information about a stage by id.
Stage Parameters
Required parameters are marked with *
|
Name |
Description |
|
id* |
Identifier of the stage |
Response Handling
HTTP status: 200
{
"id": 1,
"name": "Launch",
"code": "",
"color": "22B9FF",
"sort": 1000,
"semantic": null,
"typeId": 1,
"isFirst": true,
"isSuccess": false,
"isFail": false,
"tasks": [
{
"title": "Task",
"robotType": "RpaApproveActivity",
"robotName": "A43555_78925_98855_46118",
"canAppendResponsibles": true,
"users": [
{
"id": "U1",
"entityId": 1,
"name": "Anthony",
"photoSrc": "",
"url": "\/company\/personal\/user\/1\/",
"entityType": "users"
},
{
"id": "U4",
"entityId": 4,
"name": "Peter",
"photoSrc": "",
"url": "\/company\/personal\/user\/4\/",
"entityType": "users"
}
]
}
],
"robotsCount": 0,
"possibleNextStages": [1,2,3,4,5],
"permissions": {
"droppable": true,
"canMoveFrom": true
}
}
Returned Data
|
Name |
Description |
|
name |
Name of the stage |
|
code |
Symbolic code. Can be used as an external identifier |
|
color |
HEX color code of the stage, 6 characters |
|
sort |
Sorting index |
|
semantic |
Semantic code of the stage. Can be either |
|
typeId |
Identifier of the process |
|
isFirst |
Calculated field. Returns |
|
isSuccess |
Calculated field. Returns |
|
isFail |
Calculated field. Returns |
|
tasks |
Array of tasks for the stage. Each entry has the following structure:
|
|
robotsCount |
Calculated field. Number of robots at the stage |
|
possibleNextStages |
Array of identifiers of stages to which the item can be moved. Not used |
|
permissions |
Set of permissions for the kanban:
|
Continue Exploring
- Stages: Overview of Methods
- Create a New Stage rpa.stage.add
- Update Stage rpa.stage.update
- Get a List of Process Stages rpa.stage.listForType
- Delete Stage rpa.stage.delete