POST
/
licenses
/
{license}
/
whitelist-ip
curl --request POST \
  --url https://orbitflare.com/api/customer/v1/licenses/{license}/whitelist-ip \
  --header 'Content-Type: application/json' \
  --header 'X-ORBIT-KEY: <api-key>' \
  --data '{
  "ip_address": "127.0.0.1",
  "location_id": 123,
  "expires_at": "<string>"
}'
{
  "message": "<string>"
}

Authorizations

X-ORBIT-KEY
string
header
required

Path Parameters

license
string
required

The license identifier.

Body

application/json
IP address and location ID to whitelist.

The body is of type object.

Response

200
application/json
IP whitelisted successfully.

The response is of type object.