Create Process rpa.type.add
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 creates a new process.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
fields* |
A list of process fields. The list of possible fields is described below |
Parameter fields
Required parameters are marked with *
|
Name |
Description |
|
title* |
The name of the process |
|
image |
The image of the process from the list |
|
settings |
A list of arbitrary settings for the process |
|
permissions |
A list of objects. Each object describes access permissions for this process |
Warning
- Automated scenarios, such as creating stages, Automation rules, and default fields, will not be triggered when creating a process via
rest. - The request must specify access permissions for modifying the process.
Code Examples
Create a new process named "My Process." All users can create items for this process. Only the user with id = 1 can modify the settings of this process.
How to Use Examples in Documentation
{
"fields": {
"title": "My Process",
"image": "list",
"permissions": [
{
"accessCode": "UA",
"permission": "X",
"action": "ITEMS_CREATE"
},
{
"accessCode": "U1",
"permission": "X",
"action": "MODIFY"
},
]
}
}
Response Handling
The method will return data in the response similar to the response of the method rpa.type.get.