Skip to content

Commit f49ce0f

Browse files
author
github-actions
committed
Update REST API documentation Wed Jun 10 11:46:00 UTC 2026
1 parent a164354 commit f49ce0f

1 file changed

Lines changed: 26 additions & 11 deletions

File tree

restapi.json

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4908,7 +4908,7 @@
49084908
"name": "php-auth-pw",
49094909
"in": "header",
49104910
"description": "Session key obtained from login",
4911-
"required": false,
4911+
"required": true,
49124912
"schema": {
49134913
"type": "string"
49144914
}
@@ -5217,7 +5217,7 @@
52175217
"subscribe-pages"
52185218
],
52195219
"summary": "Delete subscription",
5220-
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.Unsubscribe subscriber from a list from subscribe page.",
5220+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.Unsubscribe subscriber from lists of subscribe page.",
52215221
"operationId": "48751c56d39746c6b8dc3f782a9b22e5",
52225222
"parameters": [
52235223
{
@@ -5228,17 +5228,19 @@
52285228
"schema": {
52295229
"type": "integer"
52305230
}
5231-
},
5232-
{
5233-
"name": "email",
5234-
"in": "query",
5235-
"description": "Subscriber email",
5236-
"required": true,
5237-
"schema": {
5238-
"type": "string"
5239-
}
52405231
}
52415232
],
5233+
"requestBody": {
5234+
"description": "",
5235+
"required": true,
5236+
"content": {
5237+
"application/json": {
5238+
"schema": {
5239+
"$ref": "#/components/schemas/PublicUnsubscriptionRequest"
5240+
}
5241+
}
5242+
}
5243+
},
52425244
"responses": {
52435245
"204": {
52445246
"description": "Success"
@@ -8405,6 +8407,19 @@
84058407
},
84068408
"type": "object"
84078409
},
8410+
"PublicUnsubscriptionRequest": {
8411+
"required": [
8412+
"email"
8413+
],
8414+
"properties": {
8415+
"email": {
8416+
"type": "string",
8417+
"format": "email",
8418+
"example": "lia@example.com"
8419+
}
8420+
},
8421+
"type": "object"
8422+
},
84088423
"SubscriberAttributeDefinitionRequest": {
84098424
"required": [
84108425
"name"

0 commit comments

Comments
 (0)