TLS Edge Backend Module
Replace TLS Edge Backend Module
Request
PUT /edges/tls/{id}/backend
Example Request
curl \
-X PUT \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"backend_id":"bkdtg_2hrGzTbognHxE0sDsMY9C5fIsbR","enabled":true}' \
https://api.ngrok.com/edges/tls/edgtls_2hrGzUC33Ze0IT2KmDDL55kGxZg/backend
Parameters
Name | Type | Description |
---|---|---|
enabled | boolean | true if the module will be applied to traffic, false to disable. default true if unspecified |
backend_id | string | backend to be used to back this endpoint |
Response
Returns a 200 response on success
Example Response
{
"backend": {
"id": "bkdtg_2hrGzTbognHxE0sDsMY9C5fIsbR",
"uri": "https://api.ngrok.com/backends/tunnel_group/bkdtg_2hrGzTbognHxE0sDsMY9C5fIsbR"
},
"enabled": true
}
Fields
Name | Type | Description |
---|---|---|
enabled | boolean | true if the module will be applied to traffic, false to disable. default true if unspecified |
backend | Ref | backend to be used to back this endpoint |
Ref fields
Name | Type | Description |
---|---|---|
id | string | a resource identifier |
uri | string | a uri for locating a resource |
Get TLS Edge Backend Module
Request
GET /edges/tls/{id}/backend
Example Request
curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/edges/tls/edgtls_2hrGzUC33Ze0IT2KmDDL55kGxZg/backend
Response
Returns a 200 response on success
Example Response
{
"backend": {
"id": "bkdtg_2hrGzTbognHxE0sDsMY9C5fIsbR",
"uri": "https://api.ngrok.com/backends/tunnel_group/bkdtg_2hrGzTbognHxE0sDsMY9C5fIsbR"
},
"enabled": true
}
Fields
Name | Type | Description |
---|---|---|
enabled | boolean | true if the module will be applied to traffic, false to disable. default true if unspecified |
backend | Ref | backend to be used to back this endpoint |
Ref fields
Name | Type | Description |
---|---|---|
id | string | a resource identifier |
uri | string | a uri for locating a resource |
Delete TLS Edge Backend Module
Request
DELETE /edges/tls/{id}/backend
Example Request
curl \
-X DELETE \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/edges/tls/edgtls_2hrGzUC33Ze0IT2KmDDL55kGxZg/backend
Response
Returns a 204 response with no body on success