mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-04-26 00:52:28 +00:00
98 lines
2.3 KiB
JSON
98 lines
2.3 KiB
JSON
{
|
|
"operationId": "getAccessLists",
|
|
"summary": "Get all access lists",
|
|
"tags": ["Access Lists"],
|
|
"security": [
|
|
{
|
|
"BearerAuth": ["access_lists"]
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"in": "query",
|
|
"name": "expand",
|
|
"description": "Expansions",
|
|
"schema": {
|
|
"type": "string",
|
|
"enum": ["owner", "items", "clients"]
|
|
}
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "200 response",
|
|
"content": {
|
|
"application/json": {
|
|
"examples": {
|
|
"default": {
|
|
"value": [
|
|
{
|
|
"id": 1,
|
|
"created_on": "2024-10-08T22:15:40.000Z",
|
|
"modified_on": "2024-10-08T22:15:40.000Z",
|
|
"owner_user_id": 1,
|
|
"name": "test1234",
|
|
"meta": {},
|
|
"satisfy_any": true,
|
|
"pass_auth": false,
|
|
"proxy_host_count": 0,
|
|
"owner": {
|
|
"id": 1,
|
|
"created_on": "2024-10-07T22:43:55.000Z",
|
|
"modified_on": "2024-10-08T12:52:54.000Z",
|
|
"is_deleted": false,
|
|
"is_disabled": false,
|
|
"email": "admin@example.com",
|
|
"name": "Administrator",
|
|
"nickname": "some guy",
|
|
"avatar": "//www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?default=mm",
|
|
"roles": [
|
|
"admin"
|
|
]
|
|
},
|
|
"items": [
|
|
{
|
|
"id": 1,
|
|
"created_on": "2024-10-08T22:15:40.000Z",
|
|
"modified_on": "2024-10-08T22:15:40.000Z",
|
|
"access_list_id": 1,
|
|
"username": "admin",
|
|
"password": "",
|
|
"meta": {},
|
|
"hint": "a****"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"created_on": "2024-10-08T22:15:40.000Z",
|
|
"modified_on": "2024-10-08T22:15:40.000Z",
|
|
"access_list_id": 1,
|
|
"username": "asdad",
|
|
"password": "",
|
|
"meta": {},
|
|
"hint": "a*****"
|
|
}
|
|
],
|
|
"clients": [
|
|
{
|
|
"id": 1,
|
|
"created_on": "2024-10-08T22:15:40.000Z",
|
|
"modified_on": "2024-10-08T22:15:40.000Z",
|
|
"access_list_id": 1,
|
|
"address": "127.0.0.1",
|
|
"directive": "allow",
|
|
"meta": {}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"schema": {
|
|
"$ref": "../../../components/access-list-list.json"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|