Skip to content

Commit c07d7e6

Browse files
author
github-actions
committed
Update REST API documentation Tue Jul 22 08:57:38 UTC 2025
1 parent 6b41ec8 commit c07d7e6

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

restapi.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3350,6 +3350,46 @@
33503350
}
33513351
}
33523352
},
3353+
"/api/v2/subscribers/confirm": {
3354+
"get": {
3355+
"tags": [
3356+
"subscribers"
3357+
],
3358+
"summary": "Confirm a subscriber by uniqueId.",
3359+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.",
3360+
"operationId": "1e4d7709f3d02f54a4fe6a183b253140",
3361+
"requestBody": {
3362+
"required": true,
3363+
"content": {
3364+
"application/json": {
3365+
"schema": {
3366+
"properties": {
3367+
"uniqueId": {
3368+
"type": "string",
3369+
"example": "e9d8c9b2e6"
3370+
}
3371+
},
3372+
"type": "object"
3373+
}
3374+
}
3375+
}
3376+
},
3377+
"responses": {
3378+
"200": {
3379+
"description": "Subscriber confirmed",
3380+
"content": {
3381+
"text/html": {}
3382+
}
3383+
},
3384+
"400": {
3385+
"description": "Missing or invalid uniqueId"
3386+
},
3387+
"404": {
3388+
"description": "Subscriber not found"
3389+
}
3390+
}
3391+
}
3392+
},
33533393
"/api/v2/subscribers/export": {
33543394
"post": {
33553395
"tags": [

0 commit comments

Comments
 (0)