Properties
| Name | Type | Description |
|---|---|---|
| is_local | boolean | Whether the campaign should be sent with local recipient timezone send (requires UTC time) or statically sent at the given time. |
| send_past_recipients_immediately | boolean | Determines if we should send to local recipient timezone if the given time has passed. Only applicable to local sends. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LocalStaticSend",
"title": "LocalStaticSend",
"type": "object",
"properties": {
"is_local": {
"description": "Whether the campaign should be sent with local recipient timezone send (requires UTC time) or statically sent at the given time.",
"type": "boolean",
"enum": [
true
]
},
"send_past_recipients_immediately": {
"description": "Determines if we should send to local recipient timezone if the given time has passed. Only applicable to local sends.",
"type": "boolean",
"default": false
}
},
"required": [
"is_local"
]
}