Delete IP authorization

Delete IP Authorization

This endpoint lets you delete an IP authorization.

Parameters

ParameterTypeDescription
IDstring

The ID of the IP authorization to delete.

Request & Response

DELETE https://proxy.webshare.io/api/v2/proxy/ipauthorization/<ID>/
delete_ip_authorization.py
import requests
 
response = requests.delete(
    "https://proxy.webshare.io/api/v2/proxy/ipauthorization/<ID>/",
    headers={"Authorization": "Token "}
)
response.json()

The commands above returns empty response with 204 No Content

HTTP/1.1 204 No Content