Skip to main content
Version: 1.4.1

Boards Configurations

You can change the configuration of the CRM kanban boards, including the content and opportunity boards. To do so, complete the following steps:

  1. Navigate to CRM → Edit Boards.
  2. Open the record of the required board and configure it.
  3. Click Save and view.

The following parameters can be changed for each board:

  • Name – add the title of the board.
  • Selling direction – specify the selling direction, whose content or opportunity related records are displayed on the board. If not specified, the records of all selling directions are displayed on the board.
  • Background – add backgorund image for the booard.
  • JSON config – configure the board parameters in JSON.

JSON config parameters

The kanban board header configuration.

ParameterDescriptionDefault value for contentDefault value for opportunity
WIP_limitsSpecify the limits of records in each state. The limits may vary for each state or may not be specified."backlog":5,
"approval":5,
"correction":5,
"in_progress":5,
"layout_editing":5,
"internal_editing":5
-
included_stateSpecify the records states that will be displayed on the board. If empty, the records in all states are displayed except for those that are in the states specified in the excluded_states parameter.--
excluded_statesSpecify the states of records that will be hidden from the board."withdrawn",
"published",
"thematic_pool"
"Support and post-sale",
"Demand generation"
state_aggregationNot used.--
Example of JSON config for an opportunity board
{
"rows":{
"WIP_limits":{

},
"included_state":[

],
"excluded_states":[
"Support and post-sale",
"Demand generation"
],
"state_aggregation":[

]
},
"cards":{
"body":"name",
"badge1":"",
"badge2":"service_or_product",
"badge3":"selling_direction",
"badge4":"estimated_revenue",
"badge5":"opportunity_probability",
"color_badge_1":"#0068B3",
"color_badge_2":"#ff7514",
"color_badge_3":"#0068B3",
"color_badge_4":"#77dd77",
"color_badge_5":"#0068B3",
"responsible":"responsible",
"expedite_field":"",
"expedite_value":"",
"need_action_field":"status_reason",
"need_action_value":"on_hold",
"time_in_current_state":"sys_updated_at"
},
"lines":{
"main_name":"Main Opportunity",
"expedite_name":"Expedite"
},
"global":{
"condition":"(active=1^open=1)",
"row_column_id":"166480673810623773",
"row_column_name":"stage",
"essence_table_id":"166480589916282031",
"essence_table_name":"crm_opportunity",
"background_image_url":"",
"background_image_id":"168907430726377278"
}
}
Example of JSON config for a content board
{
"rows":{
"WIP_limits":{
"backlog":5,
"approval":5,
"correction":5,
"in_progress":5,
"layout_editing":5,
"internal_editing":5
},
"included_state":[

],
"excluded_states":[
"withdrawn",
"published",
"thematic_pool"
],
"state_aggregation":[

]
},
"cards":{
"body":"name",
"badge1":"",
"badge2":"service_or_product",
"badge3":"master_content",
"badge4":"sme",
"badge5":"",
"color_badge_1": "#ff7514",
"color_badge_2": "#0068B3",
"color_badge_3": "#77dd77",
"color_badge_4": "#ff7514",
"color_badge_5": "#0068B3",
"responsible":"author",
"expedite_field":"expedite",
"expedite_value":"true",
"need_action_field":"blocked",
"need_action_value":"true",
"time_in_current_state":"sys_updated_at"
},
"lines":{
"main_name":"Main Contents",
"expedite_name":"Expedite"
},
"global":{
"condition":"()",
"row_column_id":"167335724326704524",
"row_column_name":"status",
"essence_table_id":"167335630627617349",
"essence_table_name":"crm_content",
"background_image_url":"",
"background_image_id":"168907430726377278"
}
}