Skip to content

Commit 4a342a3

Browse files
committed
openapi spec main
1 parent 1a15f01 commit 4a342a3

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

openapi.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3397,6 +3397,12 @@
33973397
"type": "string",
33983398
"nullable": true,
33993399
"description": "Reason for pausing the broadcast"
3400+
},
3401+
"sent_at": {
3402+
"type": "string",
3403+
"format": "date-time",
3404+
"nullable": true,
3405+
"description": "When the broadcast was sent"
34003406
}
34013407
}
34023408
},
@@ -3503,12 +3509,16 @@
35033509
},
35043510
"AudienceSettings": {
35053511
"type": "object",
3506-
"required": ["list"],
3512+
"required": ["lists"],
35073513
"properties": {
3508-
"list": {
3509-
"type": "string",
3510-
"description": "List ID to send to",
3511-
"example": "newsletter"
3514+
"lists": {
3515+
"type": "array",
3516+
"description": "List IDs to send to (at least one required)",
3517+
"items": {
3518+
"type": "string"
3519+
},
3520+
"minItems": 1,
3521+
"example": ["newsletter", "customers"]
35123522
},
35133523
"segments": {
35143524
"type": "array",
@@ -3522,6 +3532,11 @@
35223532
"type": "boolean",
35233533
"description": "Whether to exclude unsubscribed contacts",
35243534
"example": true
3535+
},
3536+
"skip_duplicate_emails": {
3537+
"type": "boolean",
3538+
"description": "Whether to skip duplicate email addresses",
3539+
"example": true
35253540
}
35263541
}
35273542
},

0 commit comments

Comments
 (0)