IP Skipping

The link provided below directs to a detailed page that elaborates on the concept of IP skipping within our system.

IP Skipping


It's important to note that almost every endpoint related to IP skipping, with the notable exceptions of the index and delete endpoints, will return an IP skipping resource upon a successful call.

IpSkippingResource
{
    "hash": "01HQ5K3P97DY8EX9Y90YT1K6XA",
    "title": "192.0.2.1",
    "items": [
        {
            "hash": "01HQJ5GS1NXBP562CCQFQB6XN7",
            "ip_range": "24.52.81.2/32"
        },
        {
            "hash": "01HQJ5GW9NXBCC62CCQFQB6XN7",
            "ip_range": "14.51.82.2/32"
        }
    ]
}

Create IP Skipping List

POST /residential-users/{residential_user_hash}/ips-skipping

Query Parameters

NameTypeDescription

residential_user_hash

String

Hash of the user

Body Parameters

NameTypeDescription

title

String

Title of the IP skipping list

Get IP Skipping Lists

GET /residential-users/{residential_user_hash}/ips-skipping

Query Parameters

NameTypeDescription

residential_user_hash

String

Hash of the user

Update IP Skipping List

UPDATE /residential-users/{residential_user_hash}/ips-skipping/{ips_skipping_hash}

Query Parameters

NameTypeDescription

residential_user_hash

String

Hash of the user

ips_skipping_hash

String

Hash of the IPs skipping list

Body Parameters

NameTypeDescription

title

String

Title of the skipping list

ip_ranges

Array

Ranges to be added to the list

Delete IP Skipping List

DELETE /residential-users/{residential_user_hash}/ips-skipping/{ips_skipping_hash}

Query Parameters

NameTypeDescription

residential_user_hash

String

Hash of the user

ips_skipping_hash

String

Hash of the IPs skipping list

Last updated