Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| on_execution | boolean | The enum for whether the action will add/remove from the list in the List Update Action. |
| list_id | string | |
| status | string | Flow action status. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListUpdateActionData",
"title": "ListUpdateActionData",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"on_execution": {
"description": "The enum for whether the action will add/remove from the list in the\n List Update Action.",
"type": "boolean",
"enum": [
false,
true
],
"nullable": true
},
"list_id": {
"type": "string",
"nullable": true
},
"status": {
"description": "Flow action status.",
"type": "string",
"example": "draft",
"default": "draft",
"enum": [
"disabled",
"draft",
"live",
"manual"
]
}
},
"required": [
"name",
"on_execution",
"list_id"
]
}