Skip to content

Commit 69dbcec

Browse files
author
github-actions
committed
Update REST API documentation Mon Mar 30 08:05:02 UTC 2026
1 parent 55aaeb3 commit 69dbcec

File tree

1 file changed

+53
-17
lines changed

1 file changed

+53
-17
lines changed

restapi.json

Lines changed: 53 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3706,23 +3706,7 @@
37063706
"content": {
37073707
"application/json": {
37083708
"schema": {
3709-
"required": [
3710-
"emails"
3711-
],
3712-
"properties": {
3713-
"emails": {
3714-
"type": "array",
3715-
"items": {
3716-
"type": "string",
3717-
"format": "email"
3718-
},
3719-
"example": [
3720-
"test1@example.com",
3721-
"test2@example.com"
3722-
]
3723-
}
3724-
},
3725-
"type": "object"
3709+
"$ref": "#/components/schemas/SubscriptionRequest"
37263710
}
37273711
}
37283712
}
@@ -7326,6 +7310,34 @@
73267310
"type": "string",
73277311
"format": "date"
73287312
},
7313+
"is_confirmed": {
7314+
"description": "Whether subscriber is confirmed (true, false, 1, 0)",
7315+
"type": "boolean",
7316+
"enum": [
7317+
"true",
7318+
"false",
7319+
"1",
7320+
"0",
7321+
true,
7322+
false,
7323+
1,
7324+
0
7325+
]
7326+
},
7327+
"is_blacklisted": {
7328+
"description": "Whether subscriber is blacklisted (true, false, 1, 0)",
7329+
"type": "boolean",
7330+
"enum": [
7331+
"true",
7332+
"false",
7333+
"1",
7334+
"0",
7335+
true,
7336+
false,
7337+
1,
7338+
0
7339+
]
7340+
},
73297341
"columns": {
73307342
"description": "Columns to include in the export",
73317343
"type": "array",
@@ -7351,6 +7363,30 @@
73517363
},
73527364
"type": "object"
73537365
},
7366+
"SubscriptionRequest": {
7367+
"required": [
7368+
"emails"
7369+
],
7370+
"properties": {
7371+
"emails": {
7372+
"type": "array",
7373+
"items": {
7374+
"type": "string",
7375+
"format": "email"
7376+
},
7377+
"example": [
7378+
"test1@example.com",
7379+
"test2@example.com"
7380+
]
7381+
},
7382+
"autoConfirm": {
7383+
"description": "Whether to automatically confirm subscriptions",
7384+
"type": "boolean",
7385+
"example": true
7386+
}
7387+
},
7388+
"type": "object"
7389+
},
73547390
"UpdateSubscriberRequest": {
73557391
"required": [
73567392
"email"

0 commit comments

Comments
 (0)