Get Information About Stage rpa.stage.get
Choose a tool for developing with an AI agent:
- use Alaio Vibecode to build an app for Bitrix24 from a task description without knowing any programming language. The agent writes the code and deploys the app to a server, with no manual hosting setup
- use the MCP server to develop a REST API integration in your own project. The agent refers to the official REST documentation
Scope:
rpaWho can execute the method: any user
DEPRECATED
The development of this method has been halted. Use Smart scripts as an alternative to this functionality.
This method retrieves information about a stage by its 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": "Anton",
"photoSrc": "",
"url": "\/company\/personal\/user\/1\/",
"entityType": "users"
},
{
"id": "U4",
"entityId": 4,
"name": "Piter",
"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 |
Computed field. Returns |
|
isSuccess |
Computed field. Returns |
|
isFail |
Computed field. Returns |
|
tasks |
Array of tasks for the stage. Each entry has the following structure:
|
|
robotsCount |
computed 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:
|