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.
| Property | Description |
|---|---|
label | String (Default: null)Required. Text to be displayed as the custom card title. |
dataSource | String (Default: null)Used to define a deep data source. The value of this property must be formatted as a JSON array literal. |
properties | List<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"]
}
]