mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 23:33:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|     "operationId": "getAccessList",
 | |
|     "summary": "Get a access List",
 | |
|     "tags": [
 | |
|         "access-lists"
 | |
|     ],
 | |
|     "security": [
 | |
|         {
 | |
|             "bearerAuth": [
 | |
|                 "access_lists.view"
 | |
|             ]
 | |
|         }
 | |
|     ],
 | |
|     "parameters": [
 | |
|         {
 | |
|             "in": "path",
 | |
|             "name": "listID",
 | |
|             "description": "Access List ID",
 | |
|             "schema": {
 | |
|                 "type": "integer",
 | |
|                 "minimum": 1
 | |
|             },
 | |
|             "required": true,
 | |
|             "example": 1
 | |
|         }
 | |
|     ],
 | |
|     "responses": {
 | |
|         "200": {
 | |
|             "description": "200 response",
 | |
|             "content": {
 | |
|                 "application/json": {
 | |
|                     "examples": {
 | |
|                         "default": {
 | |
|                             "value": {
 | |
|                                 "id": 1,
 | |
|                                 "created_on": "2025-10-28T04:06:55.000Z",
 | |
|                                 "modified_on": "2025-10-29T22:48:20.000Z",
 | |
|                                 "owner_user_id": 1,
 | |
|                                 "name": "My Access List",
 | |
|                                 "meta": {},
 | |
|                                 "satisfy_any": false,
 | |
|                                 "pass_auth": false,
 | |
|                                 "proxy_host_count": 1
 | |
|                             }
 | |
|                         }
 | |
|                     },
 | |
|                     "schema": {
 | |
|                         "$ref": "../../../../components/access-list-object.json"
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |