List

A list component renders a collection of list items. Below you can see what's needed for both the List Component and List's Items array.

{
  type: "list",
  disabled: "true",
  items: [
    {
      type: "item",
      id: "article-123",
      title: "How to install the messenger",
      subtitle: "An article explaining how to integrate Intercom",
      tertiary_text: "Read time: 4 mins",
      image: "http://somesite.com/article.png",
      image_width: 48,
      image_height: 48,
      roundedImage: false,
      disabled: true,
      action: {
        type: "submit"
      }
    }
  ]
}

List

ParameterPossible ValuesRequiredFunction
itemsArray (see below)YesThe items that will be rendered in the list.
disabledtrue falseNoThe defined state of the inputted value to render a specific style.

List Items

ParameterPossible ValuesRequiredFunction
idAny stringYesUnique identifier for the component within this card.
titleAny stringYesThe text shown as the title for the list item.
subtitleAny stringNoThe text shown underneath the list item's title.
tertiary_textAny stringNoThe text shown next to the subtitle, separate by a bullet.
imageA valid URLNoAn image that will be displayed on the left-hand side of the list
image_widthAny numberYes (if image provided)Width of the image in pixels.
image_heightAny numberYes (if image provided)Height of the image in pixels.
rounded_imagetrue false (default)NoRounds the corners of the image if true.
disabledtrue falseNoThe defined state of the inputted value to render a specific style.
actionAction objectNoThis can be a Submit Action, URL Action, or Sheets Action.

Card View

Frame View