Get the List of Stages for the rpa.stage.listForType Process
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
Scope:
rpaWho can execute the method: any user
DEPRECATED
The development of this method has been halted. Please use Smart processes as an alternative to this functionality.
This method retrieves a list of process stages, sorted in order with final stages at the end.
Method Parameters
|
Name |
Description |
|
typeId* |
Identifier of the process |
|
start |
This parameter is used for managing pagination. The page size for results is always static — 50 records. To select the second page of results, you need to pass the value The formula for calculating the
|
Required parameters are marked with *
Response Handling
HTTP Status: 200
The information for each stage will include only basic data, without tasks, robotsCount, possibleNextStages, permissions.
{
"stages": [
{
"id": 1,
"name": "Launch",
"code": "",
"color": "22B9FF",
"sort": 1000,
"semantic": null,
"typeId": 1,
"isFirst": true,
"isSuccess": false,
"isFail": false
}
]
}
Continue Your Exploration
- Stages: Overview of Methods
- Create a New Stage rpa.stage.add
- Update Stage rpa.stage.update
- Get Information About Stage rpa.stage.get
- Delete Stage rpa.stage.delete