Skip to content

Commit acc6365

Browse files
author
github-actions
committed
Update REST API documentation Thu Feb 26 15:58:04 UTC 2026
1 parent 6433edf commit acc6365

1 file changed

Lines changed: 75 additions & 0 deletions

File tree

restapi.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4803,6 +4803,81 @@
48034803
}
48044804
},
48054805
"/api/v2/subscribers": {
4806+
"get": {
4807+
"tags": [
4808+
"subscribers"
4809+
],
4810+
"summary": "Gets a list of all subscribers.",
4811+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production. Returns a JSON list of all subscribers.",
4812+
"operationId": "6e0a4ae724df948b624a52b8349fa9df",
4813+
"parameters": [
4814+
{
4815+
"name": "php-auth-pw",
4816+
"in": "header",
4817+
"description": "Session key obtained from login",
4818+
"required": true,
4819+
"schema": {
4820+
"type": "string"
4821+
}
4822+
},
4823+
{
4824+
"name": "after_id",
4825+
"in": "query",
4826+
"description": "Last id (starting from 0)",
4827+
"required": false,
4828+
"schema": {
4829+
"type": "integer",
4830+
"default": 1,
4831+
"minimum": 1
4832+
}
4833+
},
4834+
{
4835+
"name": "limit",
4836+
"in": "query",
4837+
"description": "Number of results per page",
4838+
"required": false,
4839+
"schema": {
4840+
"type": "integer",
4841+
"default": 25,
4842+
"maximum": 100,
4843+
"minimum": 1
4844+
}
4845+
}
4846+
],
4847+
"responses": {
4848+
"200": {
4849+
"description": "Success",
4850+
"content": {
4851+
"application/json": {
4852+
"schema": {
4853+
"properties": {
4854+
"items": {
4855+
"type": "array",
4856+
"items": {
4857+
"$ref": "#/components/schemas/Subscriber"
4858+
}
4859+
},
4860+
"pagination": {
4861+
"$ref": "#/components/schemas/CursorPagination"
4862+
}
4863+
},
4864+
"type": "object"
4865+
}
4866+
}
4867+
}
4868+
},
4869+
"403": {
4870+
"description": "Failure",
4871+
"content": {
4872+
"application/json": {
4873+
"schema": {
4874+
"$ref": "#/components/schemas/UnauthorizedResponse"
4875+
}
4876+
}
4877+
}
4878+
}
4879+
}
4880+
},
48064881
"post": {
48074882
"tags": [
48084883
"subscribers"

0 commit comments

Comments
 (0)