Замовлення

Список всіх публично доступних методів для взаємодії з API.

POST

Замовлення кошика -/cart/order

//@ts-ignore

Метод запита

POSThttp://apilocal.stableproxy.com/v2/cart/order

Параметри запиту

ІдентифікаторПравилаПриклад
traffic-unitНе обов'язковоnullablestringin:gb"gb"
period-unitНе обов'язковоnullablestringin:weeks, weeks, months, years"weeks"
traffic-amountrequiredintegerin:25, 100, 400, 800, 5000"25"
period-amountrequiredintegerin"1"
countНе обов'язковоnullableinteger30
countriesНе обов'язковоnullablearray{"UA": 10, "PL": 20}
typerequiredstringin:shared, private, residential_gb, residential_static_gb, mobile_gb, mobile_static, mobile_static_gb"shared"
currencyНе обов'язковоnullablestringcurrency_code"USD"
has-unlimited-auth-ipsНе обов'язковоnullableex-booleanfalse
serviceНе обов'язковоnullablestringilluminate\_validation\_rules\_in97
ip-scoreНе обов'язковоnullablenumeric29

Приклади коду

1async function postCartOrder() {
2   const baseUrl = 'http://apilocal.stableproxy.com/v2';
3   const req = await fetch(baseUrl + '/cart/order', {
4         method: 'POST',
5         headers: {
6            'Content-Type': 'application/json'
7         },
8         body: JSON.stringify({
9            "traffic-unit": "gb",
10            "period-unit": "weeks",
11            "traffic-amount": "25",
12            "period-amount": "1",
13            "count": 30,
14            "countries": {"UA": 10, "PL": 20},
15            "type": "shared",
16            "currency": "USD",
17            "has-unlimited-auth-ips": false,
18            "service": 97,
19            "ip-score": 29
20         }),
21      }
22   );
23   
24   const res = await req.json();
25}

Приклади відповідей