Add a New Timeline Entry rpa.timeline.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: 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 creates a new timeline entry for the itemId of the typeId process.

This method allows modification of only the title and description fields.

Method Parameters

Name
type

Description

typeId
integer

Identifier of the process

itemId
integer

Identifier of the item

fields
object

Object containing the fields of the entry

Fields Parameter

Name
type

Description

title
string

Title of the entry

description
string

Description of the entry. HTML tags can be used

Response Handling

HTTP Status: 200

{
            "timeline": {
                "id": 325,
                "typeId": 24,
                "itemId": 10,
                "createdTime": "2020-03-26T21:55:25+02:00",
                "userId": 1,
                "title": "rest update",
                "description": "<h5>small header</h5>",
                "action": false,
                "isFixed": false,
                "data": {
                    "scope": "rest"
                },
                "createdTimestamp": 1585252525000,
                "users": {
                    "1": {
                        "id": "1",
                        "name": "John",
                        "secondName": "",
                        "lastName": "",
                        "title": null,
                        "workPosition": "",
                        "fullName": "John",
                        "link": "/company/personal/user/1/"
                    }
                }
            }
        }
        

Continue Learning