IP replacement

Set of rules indicating which IPs to replace from and replace with in a IP list.

This endpoint lets you get an existing IP replacements.

POST https://api.ipnux.com/V1/OpenApi/OpenApiSwitchNode

Create IP replacement

Headers

Name
Type
Description

UserId*

String

"Authentication" generated userId

Token*

String

"Authentication" generated token

Content-Type*

String

application/json

Body

Name
Type
Description

proxies_ids*

array [integer]

Please use array format

Request

{
    "proxies_ids": [
        1789840567002312345
    ]
}

Response

{
    "Code": 1000,
    "Message": "Successful",
    "Data": [
        {
            "proxy_id": 12345678,
            "username": "123123123123",
            "password": "123123123123",
            "proxy_address": "192.168.1.1",
            "port": 5555,
            "protocols": 3,
            "proxy_status": 1,
            "continents_id": 1786329327412345,
            "continents_name": "欧洲",
            "country_code": "US",
            "city_id": "12345",
            "city_name": "San Jose",
            "created_at": "2024-05-12T03:58:16.484269",
            "expired_at": "2024-05-14T03:58:16.51427",
            "udp_status": false,
            "order_id": "123vxU",
            "permissions": false,
            "created_at_unix": 1715486296,
            "expired_at_unix": 1715659096
        }
    ]
}

Last updated