Main Content Area of Configurable Activity

BodyDto is the main content area of the timeline entry.

Parameters of the BodyDto Object

Required parameters are marked with *

Field

Description

logo*
LogoDto

An object describing the logo of the timeline entry

blocks
ContentBlockDto

An associative array of objects describing content blocks

Warning

The array must contain at least one element and no more than 20 elements.

LogoDto Object

Logo of the timeline entry.

Parameters of the LogoDto Object

Required parameters are marked with *

Field

Description

code*
string

Logo code, for example call. A list of available codes can be obtained using the crm.timeline.logo.list method

action
ActionDto

Action to be taken when the logo is clicked

Example Object (without content blocks)

{
            "body": {
                "logo": {
                    "code": "call-incoming",
                    "action": {
                        "type": "redirect",
                        "uri": "/crm/deal/details/123/"
                    }
                },
                "blocks": {
        
                }
            },
        }
        

Continue Exploring