Get Process Information by ID rpa.type.get

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: rpa

Who 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 process by its id.

Method Parameters

Required parameters are marked with *

Name
type

Description

id*
number

Process identifier

Response Handling

HTTP Status: 200

{
            "type": {
                "id": 1,
                "title": "Process Name",
                "image": "list",
                "createdBy": 1,
                "settings": [],
                "permissions": [
                    {
                        "id": "1",
                        "entity": "TYPE",
                        "entityId": "1",
                        "accessCode": "UA",
                        "action": "ITEMS_CREATE",
                        "permission": "X"
                    }
                ]
            }
        }
        

Returned Data

Name

Description

id

Process identifier

title

Process name

image

Icon identifier from the list

createdBy

Identifier of the user who created the process

settings

Set of process settings

permissions

Set of access permissions for this process

Continue Exploring