Renewal IP
You can use this API to renew a new plan.
This endpoint is used to renewal new IP order.
POST https://api.ipnux.com/V1/OpenApi/OpenApiNoneRenew
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]
Proxy id array
time_period*
integer
Number of days to order
currency*
string
USD
discount
string
Request
{
    "proxies_ids": [
        1789840567002311111,
1789853637716011111
    ],
    "time_period": 30,
    "currency": "USD",
    "discount": ""
}Response
{
    "Code": 1000,
    "Message": "Successful",
    "Data": {
        "OrderNo": "128lxT",
        "Quantity": 1,
        "Balance": 2.55000,
        "TimePeriod": 32,
        "Currency": "USD",
        "PerProxyPrice": 7.0,
        "Discount": 0.0,
        "Total": 7.0,
        "Amount": 7.0,
        "NodeInfos": [
            {
                "proxy_id": 1789657290585012345,
                "username": "XXXXXX",
                "password": "XXXXXX",
                "proxy_address": "1.1.1.1",
                "port": 5555,
                "protocols": 3,
                "proxy_status": 1,
                "continents_id": 178963712840212345,
                "continents_name": "北美洲",
                "country_code": "US",
                "city_id": "19822",
                "city_name": "San Jose",
                "created_at": "2024-05-12T14:02:02.943404",
                "expired_at": "2024-07-15T14:02:02.957051",
                "udp_status": false,
                "order_id": "555qJc",
                "permissions": false,
                "created_at_unix": 1715522522,
                "expired_at_unix": 1721052122
            }
        ]
    }
}Last updated