Skip to content

SmartListResponseWithRules

Type: object

Properties

Property Type Required Description Constraints
id integer (int64) Yes Id of the smart list
name string Yes Name of the smart list
description string Yes Description of the smart list
createdAt string (date-time) Yes Datetime the smart list was created
updatedAt string (date-time) Yes Datetime the smart list was most recently updated
url string Yes Url of the smart list in the Marketo UI
folder model: Folder Yes JSON representation of parent folder, with members 'id', and 'type' which may be 'Folder' or 'Program'
workspace string Yes Name of the workspace
rules model: SmartListRules No Rules contained in the smart list

Generated example

{
  "id": 123,
  "name": "Example name",
  "description": "string",
  "createdAt": "2026-01-15T10:30:00Z",
  "updatedAt": "2026-01-15T10:30:00Z",
  "url": "https://example.com",
  "folder": {
    "id": 123,
    "type": "Folder"
  },
  "workspace": "string",
  "rules": {
    "filterMatchType": "All",
    "triggers": [
      "string"
    ],
    "filters": [
      {
        "id": 123,
        "name": "Example name",
        "ruleTypeId": 123,
        "ruleType": "string",
        "operator": "string",
        "conditions": [
          {
            "activityAttributeId": 123,
            "activityAttributeName": "Example name",
            "operator": "string",
            "values": [
              "string"
            ],
            "isPrimary": true
          }
        ]
      }
    ]
  }
}

Referenced models

Source

Generated from swagger-asset.json.