mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 01:15:14 +00:00 
			
		
		
		
	frontend doesn't include when building in react version adds swagger for existing dns-providers endpoint
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"operationId": "getDNSProviders",
 | 
						|
	"summary": "Get DNS Providers for Certificates",
 | 
						|
	"tags": [
 | 
						|
		"Certificates"
 | 
						|
	],
 | 
						|
	"security": [
 | 
						|
		{
 | 
						|
			"BearerAuth": [
 | 
						|
				"certificates"
 | 
						|
			]
 | 
						|
		}
 | 
						|
	],
 | 
						|
	"responses": {
 | 
						|
		"200": {
 | 
						|
			"description": "200 response",
 | 
						|
			"content": {
 | 
						|
				"application/json": {
 | 
						|
					"examples": {
 | 
						|
						"default": {
 | 
						|
							"value": [
 | 
						|
								{
 | 
						|
									"id": "vultr",
 | 
						|
									"name": "Vultr",
 | 
						|
									"credentials": "dns_vultr_key = YOUR_VULTR_API_KEY"
 | 
						|
								},
 | 
						|
								{
 | 
						|
									"id": "websupport",
 | 
						|
									"name": "Websupport.sk",
 | 
						|
									"credentials": "dns_websupport_identifier = <api_key>\ndns_websupport_secret_key = <secret>"
 | 
						|
								},
 | 
						|
								{
 | 
						|
									"id": "wedos",
 | 
						|
									"name": "Wedos",
 | 
						|
									"credentials": "dns_wedos_user = <wedos_registration>\ndns_wedos_auth = <wapi_password>"
 | 
						|
								},
 | 
						|
								{
 | 
						|
									"id": "zoneedit",
 | 
						|
									"name": "ZoneEdit",
 | 
						|
									"credentials": "dns_zoneedit_user = <login-user-id>\ndns_zoneedit_token = <dyn-authentication-token>"
 | 
						|
								}
 | 
						|
							]
 | 
						|
						}
 | 
						|
					},
 | 
						|
					"schema": {
 | 
						|
						"$ref": "../../../../components/dns-providers-list.json"
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |