cURL
curl --request DELETE \ --url https://api.brightdata.com/zone/ips \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "zone": "zone1", "ips": [ "1.2.1.2", "1.1.2.2" ] } '
{ "ips": [ "ip1", "ip2" ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Zone name
"zone1"
Array of IPs to delete
["1.2.1.2", "1.1.2.2"]
OK
The response is of type object.
object
Was this page helpful?