Skip to content

Commit 05e8d03

Browse files
author
github-actions
committed
Update REST API documentation Mon May 25 18:24:19 UTC 2026
1 parent 636269f commit 05e8d03

1 file changed

Lines changed: 43 additions & 1 deletion

File tree

restapi.json

Lines changed: 43 additions & 1 deletion
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": true,
4911+
"required": false,
49124912
"schema": {
49134913
"type": "string"
49144914
}
@@ -6905,6 +6905,48 @@
69056905
}
69066906
}
69076907
}
6908+
},
6909+
"/api/v2/lists/{listId}/public": {
6910+
"get": {
6911+
"tags": [
6912+
"lists"
6913+
],
6914+
"summary": "Gets a subscriber list.",
6915+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production. Returns a single subscriber list with specified ID.",
6916+
"operationId": "4da85d04ec92d3dd4982c63f11f3d73e",
6917+
"parameters": [
6918+
{
6919+
"name": "listId",
6920+
"in": "path",
6921+
"description": "List ID",
6922+
"required": true,
6923+
"schema": {
6924+
"type": "string"
6925+
}
6926+
}
6927+
],
6928+
"responses": {
6929+
"200": {
6930+
"description": "Success"
6931+
},
6932+
"404": {
6933+
"description": "Failure",
6934+
"content": {
6935+
"application/json": {
6936+
"schema": {
6937+
"properties": {
6938+
"message": {
6939+
"type": "string",
6940+
"example": "There is no list with that ID."
6941+
}
6942+
},
6943+
"type": "object"
6944+
}
6945+
}
6946+
}
6947+
}
6948+
}
6949+
}
69086950
}
69096951
},
69106952
"components": {

0 commit comments

Comments
 (0)