Create renewal order

POST https://geonix.com/personal/api/v1/{apiKey}/prolong/make/{type}

This endpoint allows you to create a renewal order, which extends the service period of your proxies using the same parameters you used to calculate its cost.

Headers

Name
Value

Content-Type

application/json

Accept

application/json

Path parameters

Name
Type
Description

apiKey*

string

API key to authorize requests

type*

string

Available values : ipv4, ipv6, mobile, isp, resident

Body parameters

Name
Type
Description

ids*

array of integers

IDs of the proxies you want to renew. Ensure that the proxy type of the provided IDs matches the "type" path parameter.

periodId*

string

How long you want to renew your proxies for, as identified in the reference list (e.g., "30d" for 30 days).

Request examples

curl -X 'POST' \
  'https://geonix.com/personal/api/v1/YOUR_API_KEY_HERE/prolong/make/mobile' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "ids": [
    105487,
    458746,
    354841,
    845123,
    103547
  ],
  "periodId": "30d",
  "coupon": "OZGCNK_1"
}'

Response examples

Last updated