Skip to main content
DELETE
/
api
/
organizations
/
{organizationId}
/
blocked-ips
/
{ip}
Remove an IP from the blocklist
curl --request DELETE \
  --url https://your-instance.example.com/api/organizations/{organizationId}/blocked-ips/{ip} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "blockedIPs": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required
ip
string
required

Response

IP unblocked

success
boolean
message
string
data
object