Skip to main content
POST
/
network
/
ip_lists
Create IP List
curl --request POST \
  --url https://api.cloud.onidel.com/network/ip_lists \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Office IPs",
  "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "description": "Office network addresses"
}
'
{
  "ip_list": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Provide the value as: Token <your-api-token>

Body

application/json
name
string
required
Maximum string length: 64
Example:

"Office IPs"

team_id
string<uuid>
description
string
Maximum string length: 255
Example:

"Office network addresses"

Response

IP list created successfully

ip_list
object