Skip to main content
POST
/
customer
/
v2
/
licenses
/
{license}
/
ips
Add IP to Whitelist
curl --request POST \
  --url https://orbitflare.com/api/customer/v2/licenses/{license}/ips \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ip_address": "127.0.0.1",
  "location_id": 123,
  "expires_at": "2023-11-07T05:31:56Z"
}
'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer token from device or wallet auth

Path Parameters

license
string
required

Body

application/json
ip_address
string<ipv4>
required
location_id
integer
required
expires_at
string<date-time>

Optional expiration

Response

IP added.

success
boolean
Example:

true

message
string
data
object