Iterable · Schema

List

A subscriber list in Iterable

Cross-Channel MessagingCustomer EngagementEmailMarketing AutomationPush NotificationsSMS

Properties

Name Type Description
id integer List ID
name string List name
createdAt string List creation date
listType string Type of list
description string List description
View JSON Schema on GitHub

JSON Schema

iterable-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/List",
  "title": "List",
  "type": "object",
  "description": "A subscriber list in Iterable",
  "properties": {
    "id": {
      "type": "integer",
      "description": "List ID"
    },
    "name": {
      "type": "string",
      "description": "List name"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "List creation date"
    },
    "listType": {
      "type": "string",
      "description": "Type of list"
    },
    "description": {
      "type": "string",
      "description": "List description"
    }
  }
}