Skip to main content

Version: 18.11 (EOL)

Custom Cards

The customCards property defines the list of custom cards that Workspaces displays on the details view under the Integrations card.

Properties

All properties are optional unless otherwise indicated.

PropertyDescription
labelString (Default: null)
Required. Text to be displayed as the custom card title.
dataSourceString (Default: null)
Used to define a deep data source. The value of this property must be formatted as a JSON array literal.
propertiesList<Mapping> (Default: [])
Required. List of property Mapping keys.

Examples

Default custom cards
[
{
"label": "Funding Status",
"properties": ["$fundingType", "$fundingAmount"]
},
{
"label": "Sent Emails",
"dataSource": "properties['EmailList']",
"properties": ["$info", "$deliveryStatus", "$emailLink"]
}
]
Display only the Sent Emails card
[
{
"label": "Sent Emails",
"dataSource": "properties['EmailList']",
"properties": ["$info", "$deliveryStatus", "$emailLink"]
}
]