Bottom Part of the Record
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.
The bottom part of the timeline record with the FooterDto action block.
Parameters of the FooterDto Object
Required parameters are marked with *
|
Field |
Description |
|
buttons |
An array of objects describing action buttons. No more than two buttons are allowed |
|
menu |
Bottom menu |
FooterButtonDto
A button in the bottom part of the timeline record.
Parameters of the FooterButtonDto Object
Required parameters are marked with *
|
Field |
Description |
|
title* |
Button text |
|
type* |
Button type. Defines its appearance, e.g., |
|
action* |
Action to be performed when the button is clicked |
|
scope |
Scope, e.g., |
|
hideIfReadonly |
Flag. Hides the tag if the user does not have edit access (default is |
Possible values for the type field:
- primary - Blue button background
- secondary - White button background
Example
{
"title": "Open deal",
"type": "primary",
"action": {
"type": "redirect",
"uri": "/crm/deal/details/123/"
},
"scope": "web",
"hideIfReadonly": true
}
FooterMenuDto
Dropdown menu in the bottom part of the timeline record.
Parameters of the FooterMenuDto Object
|
Field |
Description |
|
showPinItem |
Show the "Pin" menu item. The menu item will not be shown if added to an incomplete activity. Default is |
|
showPostponeItem |
Show the "Postpone" menu item. The menu item will not be shown if added to an incoming activity, an activity without a deadline, or a completed activity. Default is |
|
showDeleteItem |
Show the "Delete" menu item. Default is |
|
items |
Associative array of objects describing dropdown menu items |
Example
{
"showPostponeItem": "false",
"showDeleteItem": "false",
"items": {
"confirm": {
"title": "Confirm request",
"action": {
"type": "restEvent",
"id": "confirm",
"animationType": "loader"
}
},
"decline": {
"title": "Decline request",
"action": {
"type": "restEvent",
"id": "decline",
"animationType": "loader"
}
}
}
}
Continue Learning
- Structure of Configurable Activity
- Icon
- Main Content Area of Configurable Activity
- Content Block of Configurable Deal
- Record Header
- Bottom Dropdown Menu
- Click Reaction
- Field Types
- Set of Additional Content Blocks
- Examples of Activity Configurations