Edge Route User Agent Filter Module
Replace HTTPS Edge Route User Agent Filter Module
Request
PUT /edges/https/{edge_id}/routes/{id}/user_agent_filter
Example Request
curl \
-X PUT \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"allow":["(Pingdom\\.com_bot_version_)(\\d+)\\.(\\d+)"],"deny":["(made_up_bot)/(\\d+)\\.(\\d+)"],"enabled":true}' \
https://api.ngrok.com/edges/https/edghts_2gsqMlRo4wZrPgIrz6C3TWbKC7A/routes/edghtsrt_2gsqMfvhQflMvr8KeyGCnlYJTNV/user_agent_filter
Parameters
Name | Type | Description |
---|---|---|
enabled | boolean | |
allow | List<string> | |
deny | List<string> |
Response
Returns a 200 response on success
Example Response
{
"allow": ["(Pingdom\\.com_bot_version_)(\\d+)\\.(\\d+)"],
"deny": ["(made_up_bot)/(\\d+)\\.(\\d+)"],
"enabled": true
}
Fields
Name | Type | Description |
---|---|---|
enabled | boolean | |
allow | List<string> | |
deny | List<string> |
Get HTTPS Edge Route User Agent Filter Module
Request
GET /edges/https/{edge_id}/routes/{id}/user_agent_filter
Example Request
curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/edges/https/edghts_2gsqMlRo4wZrPgIrz6C3TWbKC7A/routes/edghtsrt_2gsqMfvhQflMvr8KeyGCnlYJTNV/user_agent_filter
Response
Returns a 200 response on success
Example Response
{
"allow": ["(Pingdom\\.com_bot_version_)(\\d+)\\.(\\d+)"],
"deny": ["(made_up_bot)/(\\d+)\\.(\\d+)"],
"enabled": true
}
Fields
Name | Type | Description |
---|---|---|
enabled | boolean | |
allow | List<string> | |
deny | List<string> |
Delete HTTPS Edge Route User Agent Filter Module
Request
DELETE /edges/https/{edge_id}/routes/{id}/user_agent_filter
Example Request
curl \
-X DELETE \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/edges/https/edghts_2gsqMlRo4wZrPgIrz6C3TWbKC7A/routes/edghtsrt_2gsqMfvhQflMvr8KeyGCnlYJTNV/user_agent_filter
Response
Returns a 204 response with no body on success