Skip to content

Commit 0f8e7e0

Browse files
author
github-actions
committed
Update REST API documentation Wed Sep 24 08:21:27 UTC 2025
1 parent 4c0b488 commit 0f8e7e0

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

restapi.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5021,6 +5021,78 @@
50215021
}
50225022
}
50235023
},
5024+
"/api/v2/subscribers/{subscriberId}/reset-bounce-count": {
5025+
"post": {
5026+
"tags": [
5027+
"subscribers"
5028+
],
5029+
"summary": "Reset bounce count for a subscriber.",
5030+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.",
5031+
"operationId": "14393ca0927d35d1ede3b8eebd9e0421",
5032+
"parameters": [
5033+
{
5034+
"name": "php-auth-pw",
5035+
"in": "header",
5036+
"description": "Session key obtained from login",
5037+
"required": true,
5038+
"schema": {
5039+
"type": "string"
5040+
}
5041+
},
5042+
{
5043+
"name": "subscriberId",
5044+
"in": "path",
5045+
"description": "Subscriber ID",
5046+
"required": true,
5047+
"schema": {
5048+
"type": "string"
5049+
}
5050+
}
5051+
],
5052+
"responses": {
5053+
"200": {
5054+
"description": "Success",
5055+
"content": {
5056+
"application/json": {
5057+
"schema": {
5058+
"$ref": "#/components/schemas/Subscriber"
5059+
}
5060+
}
5061+
}
5062+
},
5063+
"403": {
5064+
"description": "Failure",
5065+
"content": {
5066+
"application/json": {
5067+
"schema": {
5068+
"$ref": "#/components/schemas/UnauthorizedResponse"
5069+
}
5070+
}
5071+
}
5072+
},
5073+
"422": {
5074+
"description": "Failure",
5075+
"content": {
5076+
"application/json": {
5077+
"schema": {
5078+
"$ref": "#/components/schemas/ValidationErrorResponse"
5079+
}
5080+
}
5081+
}
5082+
},
5083+
"404": {
5084+
"description": "Failure",
5085+
"content": {
5086+
"application/json": {
5087+
"schema": {
5088+
"$ref": "#/components/schemas/NotFoundErrorResponse"
5089+
}
5090+
}
5091+
}
5092+
}
5093+
}
5094+
}
5095+
},
50245096
"/api/v2/subscribers/confirm": {
50255097
"get": {
50265098
"tags": [

0 commit comments

Comments
 (0)