mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 23:33:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			605 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			605 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"operationId": "deleteStream",
 | |
| 	"summary": "Delete a Stream",
 | |
| 	"tags": ["streams"],
 | |
| 	"security": [
 | |
| 		{
 | |
| 			"bearerAuth": ["streams.manage"]
 | |
| 		}
 | |
| 	],
 | |
| 	"parameters": [
 | |
| 		{
 | |
| 			"in": "path",
 | |
| 			"name": "streamID",
 | |
| 			"description": "The ID of the Stream",
 | |
| 			"schema": {
 | |
| 				"type": "integer",
 | |
| 				"minimum": 1
 | |
| 			},
 | |
| 			"required": true,
 | |
| 			"example": 2
 | |
| 		}
 | |
| 	],
 | |
| 	"responses": {
 | |
| 		"200": {
 | |
| 			"description": "200 response",
 | |
| 			"content": {
 | |
| 				"application/json": {
 | |
| 					"examples": {
 | |
| 						"default": {
 | |
| 							"value": true
 | |
| 						}
 | |
| 					},
 | |
| 					"schema": {
 | |
| 						"type": "boolean"
 | |
| 					}
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |