Add Role documentgenerator.role.add
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:
documentgeneratorWho can execute the method: user with permission to modify document generator settings
The method documentgenerator.role.add adds a new role.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
fields* |
Role fields (detailed description) |
Parameter fields
|
Name |
Description |
|
name* |
Role name |
|
code |
Symbolic role code |
|
permissions |
Role permissions (detailed description). Keys within
If keys are passed in lowercase, the role will be saved, but permissions will be empty. |
Object permissions
|
Name |
Description |
|
SETTINGS |
Permissions for settings (detailed description) |
|
TEMPLATES |
Permissions for templates (detailed description) |
|
DOCUMENTS |
Permissions for documents (detailed description) |
Object settings
|
Name |
Description |
|
MODIFY |
Access level to settings. Possible values:
|
Object templates
|
Name |
Description |
|
MODIFY |
Access level to templates. Possible values:
|
Object documents
|
Name |
Description |
|
MODIFY |
Access level for modifying documents. Possible values:
|
|
VIEW |
Access level for viewing documents. Possible values:
|
Code Examples
How to Use Examples in Documentation
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"fields": {
"name": "Template Editors",
"code": "DOCGEN_TEMPLATE_EDITORS",
"permissions": {
"SETTINGS": {
"MODIFY": ""
},
"TEMPLATES": {
"MODIFY": "D"
},
"DOCUMENTS": {
"MODIFY": "X",
"VIEW": "X"
}
}
}
}' \
https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/documentgenerator.role.add
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"fields": {
"name": "Template Editors",
"code": "DOCGEN_TEMPLATE_EDITORS",
"permissions": {
"SETTINGS": {
"MODIFY": ""
},
"TEMPLATES": {
"MODIFY": "D"
},
"DOCUMENTS": {
"MODIFY": "X",
"VIEW": "X"
}
}
},
"auth": "**put_access_token_here**"
}' \
https://**put_your_bitrix24_address**/rest/documentgenerator.role.add
try
{
const response = await $b24.callMethod(
'documentgenerator.role.add',
{
fields: {
name: 'Template Editors',
code: 'DOCGEN_TEMPLATE_EDITORS',
permissions: {
SETTINGS: {
MODIFY: ''
},
TEMPLATES: {
MODIFY: 'D'
},
DOCUMENTS: {
MODIFY: 'X',
VIEW: 'X'
}
}
}
}
);
const result = response.getData().result;
console.log(result);
}
catch (error)
{
console.error(error);
}
try {
$response = $b24Service->core->call(
'documentgenerator.role.add',
[
'fields' => [
'name' => 'Template Editors',
'code' => 'DOCGEN_TEMPLATE_EDITORS',
'permissions' => [
'SETTINGS' => [
'MODIFY' => '',
],
'TEMPLATES' => [
'MODIFY' => 'D',
],
'DOCUMENTS' => [
'MODIFY' => 'X',
'VIEW' => 'X',
],
],
],
]
);
$result = $response->getResponseData()->getResult();
print_r($result);
} catch (Throwable $e) {
echo $e->getMessage();
}
BX24.callMethod(
'documentgenerator.role.add',
{
fields: {
name: 'Template Editors',
code: 'DOCGEN_TEMPLATE_EDITORS',
permissions: {
SETTINGS: {
MODIFY: ''
},
TEMPLATES: {
MODIFY: 'D'
},
DOCUMENTS: {
MODIFY: 'X',
VIEW: 'X'
}
}
}
},
function(result)
{
if (result.error())
{
console.error(result.error());
}
else
{
console.log(result.data());
}
}
);
require_once('crest.php');
$result = CRest::call(
'documentgenerator.role.add',
[
'fields' => [
'name' => 'Template Editors',
'code' => 'DOCGEN_TEMPLATE_EDITORS',
'permissions' => [
'SETTINGS' => [
'MODIFY' => '',
],
'TEMPLATES' => [
'MODIFY' => 'D',
],
'DOCUMENTS' => [
'MODIFY' => 'X',
'VIEW' => 'X',
],
],
],
]
);
print_r($result);
Response Handling
HTTP status: 200
{
"result": {
"role": {
"id": 9,
"name": "Template Editors",
"code": "DOCGEN_TEMPLATE_EDITORS",
"permissions": {
"settings": {
"modify": ""
},
"templates": {
"modify": "D"
},
"documents": {
"modify": "X",
"view": "X"
}
}
}
},
"time": {
"start": 1774008850,
"finish": 1774008850.528288,
"duration": 0.5282878875732422,
"processing": 0,
"date_start": "2026-03-20T15:14:10+02:00",
"date_finish": "2026-03-20T15:14:10+02:00",
"operating_reset_at": 1774009450,
"operating": 0
}
}
Returned Data
|
Name |
Description |
|
result |
Root element of the response (detailed description) |
|
time |
Information about the request execution time |
Object result
|
Name |
Description |
|
role |
Data of the created role (detailed description) |
Object role
|
Name |
Description |
|
id |
Role identifier |
|
name |
Role name |
|
code |
Symbolic role code |
|
permissions |
Role permissions (detailed description) |
Object permissions
|
Name |
Description |
|
settings |
Permissions for settings (detailed description) |
|
templates |
Permissions for templates (detailed description) |
|
documents |
Permissions for documents (detailed description) |
Object settings
|
Name |
Description |
|
modify |
Access level to settings
|
Object templates
|
Name |
Description |
|
modify |
Access level to templates
|
Object documents
|
Name |
Description |
|
modify |
Access level for modifying documents
|
|
view |
Access level for viewing documents
|
Error Handling
HTTP status: 400, 403
{
"error": "100",
"error_description": "Could not find value for parameter {fields}"
}
|
Name |
Description |
|
error |
String error code. It may consist of digits, Latin letters, and underscores |
|
error_description |
Textual description of the error. The description is not intended to be shown to the end user in its raw form |
Possible Error Codes
|
Status |
Code |
Description |
Value |
|
|
|
Could not find value for parameter |
Required parameter |
|
|
|
Required field "NAME" is not filled |
Required field |
|
|
|
You do not have permissions to modify settings |
Insufficient permissions to modify document generator settings |
|
|
|
Your plan does not support this operation |
The plan does not support the function of permission management for the document generator |
Statuses and System Error Codes
HTTP Status: 20x, 40x, 50x
The errors described below may occur when calling any method.
|
Status |
Code |
Description |
|
|
|
An internal server error has occurred. Please contact the server administrator or Bitrix24 technical support |
|
|
|
An internal server error has occurred. Please contact the server administrator or Bitrix24 technical support |
|
|
|
The request intensity limit has been exceeded |
|
|
|
The current method is not permitted for calls using batch |
|
|
|
The maximum length of parameters passed to the batch method has been exceeded |
|
|
|
Invalid access token or webhook code |
|
|
|
The HTTPS protocol is required for method calls |
|
|
|
The REST API is blocked due to overload. This is a manual individual block; please contact Bitrix24 technical support to lift it |
|
|
|
The REST API is only available on commercial plans |
|
|
|
The user associated with the access token or webhook used to call the method lacks the necessary permissions |
|
|
|
The manifest is not available |
|
|
|
The request requires higher privileges than those provided by the webhook token |
|
|
|
The provided access token has expired |
|
|
|
The user does not have access to the application. This means that the application is installed, but the portal administrator has restricted access to this application to specific users only |
|
|
|
The public part of the site is closed. To open the public part of the site on an on-premise installation, disable the "Temporary closure of the public part of the site" option. Path to the setting: Desktop > Settings > Product Settings > Module Settings > Main Module > Temporary closure of the public part of the site |
Continue Learning
- Change Role documentgenerator.role.update
- Get Role by ID documentgenerator.role.get
- Get a List of Roles documentgenerator.role.list
- Delete Role documentgenerator.role.delete
- Bind Users to Roles documentgenerator.role.fillaccesses