Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This document will help us to understand how to configure additional fields for the Channels in the Outreach Blueprint.

These configured fields will be available along with the default fields for all the channels.

\uD83D\uDCD8 Instructions

Additional fields can be configured in the Blueprint while creating the Blueprint and they can also be configured in the existing Blueprint on the Blueprint edit page.

  1. In the Blueprint edit or create page, additional fields can be configured using the Outreach Properties Editor field

  2. We can use the predefined templates for each field

  3. Click on the help icon near the field name

  4. On the help window, click on the field type that has to be added to the Channels

    For example, if we want to add a text field, click on the Text type from the region highlighted in the above screenshot

  5. Copy the code from the pop-up window

  6. Close the pop-up and paste the contents into the Outreach Properties Editor. The contents should to be pasted inside the fields array.

  7. To add extra fields copy the object structure within the "fields" array and add it with the comma-separated values before the end of the fields array(]).

  8. Change the label and key values to identify the fields. key should be unique.

  9. Example: The below Outreach Properties Editor code has a Text Field and a Text Area Field included in the fields array.

    {
        "fields": [
            {
                "label": "Text Field",
                "key": "TextKey1",
                "isDefault": false,
                "validation": [
                    {
                        "required": false
                    }
                ],
                "options": [],
                "multiple": false,
                "ref": "",
                "fieldType": "text",
                "type": "String"
            },
            {
                "label": "Text Area Field",
                "key": "TextAreaKey1",
                "isDefault": false,
                "validation": [
                    {
                        "required": true,
                        "maxlength": 250
                    }
                ],
                "options": [],
                "multiple": false,
                "ref": "",
                "fieldType": "textarea",
                "type": "String"
            }
        ]
    }
  10. Save the Blueprint

The fields configured here will be available for all the channels in the Outreach Manager page

Highlight important information in a panel like this one. To edit this panel's color or style, select one of the options in the menu.

  • No labels