Skip to content

Commit b8aa782

Browse files
author
github-actions
committed
Update REST API documentation Mon Jun 1 16:16:52 UTC 2026
1 parent 4238bf5 commit b8aa782

1 file changed

Lines changed: 65 additions & 0 deletions

File tree

restapi.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5105,6 +5105,49 @@
51055105
}
51065106
}
51075107
},
5108+
"/api/v2/subscribe-pages/{id}/public": {
5109+
"get": {
5110+
"tags": [
5111+
"subscriptions"
5112+
],
5113+
"summary": "Get public subscribe page (placeholders replaced with actual values)",
5114+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.",
5115+
"operationId": "c82021ebada5c3523680fd71890bca54",
5116+
"parameters": [
5117+
{
5118+
"name": "id",
5119+
"in": "path",
5120+
"description": "Subscribe page ID",
5121+
"required": true,
5122+
"schema": {
5123+
"type": "integer"
5124+
}
5125+
}
5126+
],
5127+
"responses": {
5128+
"200": {
5129+
"description": "Success",
5130+
"content": {
5131+
"application/json": {
5132+
"schema": {
5133+
"$ref": "#/components/schemas/SubscribePagePublic"
5134+
}
5135+
}
5136+
}
5137+
},
5138+
"404": {
5139+
"description": "Not Found",
5140+
"content": {
5141+
"application/json": {
5142+
"schema": {
5143+
"$ref": "#/components/schemas/NotFoundErrorResponse"
5144+
}
5145+
}
5146+
}
5147+
}
5148+
}
5149+
}
5150+
},
51085151
"/api/v2/attributes": {
51095152
"get": {
51105153
"tags": [
@@ -8569,6 +8612,28 @@
85698612
},
85708613
"type": "object"
85718614
},
8615+
"SubscribePagePublic": {
8616+
"properties": {
8617+
"id": {
8618+
"type": "integer",
8619+
"example": 1
8620+
},
8621+
"title": {
8622+
"type": "string",
8623+
"example": "Subscribe to our newsletter"
8624+
},
8625+
"data": {
8626+
"type": "array",
8627+
"items": {
8628+
"type": "object",
8629+
"additionalProperties": {
8630+
"type": "string"
8631+
}
8632+
}
8633+
}
8634+
},
8635+
"type": "object"
8636+
},
85728637
"SubscriberAttributeValue": {
85738638
"properties": {
85748639
"subscriber": {

0 commit comments

Comments
 (0)