API documentation
  • Documention
    • Common information
      • Authorization in API
      • Currency
    • Services
    • Order management
      • Order list reception
      • Placing an order
      • Order changes
      • Order payment
      • Order operations
    • Network tools
      • Checker
      • Free proxies
Powered by GitBook
On this page
  1. Documention
  2. Order management

Placing an order

PreviousOrder list receptionNextOrder changes

Last updated 1 year ago

Available purchase periods

Available periods for individual, prime, city and batch proxies :

  • 30 days

  • 60 days

  • 90 days

  • 180 days

  • 365 days

For mobile and mobile plus:

  • 1 day

  • 7 days

  • 30 days

  • 90 days

  • 365 days

Available quantity

For personal proxies: up to 500 pcs. per order.

For Prime proxies: up to 100 pcs. per order.

For City proxies: up to 50 pcs. per order.

For batch proxies: in for each country returns field packets with available batches.

#spisok-dostupnykh-lokacii-dlya-servisa
  • POSTNew order
  • Available purchase periods
  • Available quantity

New order

post

A new order is created. Order data is returned in the specified language and currency.

Query parameters
langstring · enumOptional

Language code

Default: ENPossible values:
currencystring · enumOptional

Currency code

Default: USDPossible values:
Body
service_idintegerRequired

Service (see /services)

location_idintegerRequired

Location (see /services/{id}/locations)

quantityintegerOptional

Number of addresses/channels

Default: 1
periodintegerOptional

Period in days

Default: 30
multiportbooleanOptional

Allow the client to change equipment (mobile only)

Default: true
Responses
200
OK
application/json
401
Unauthorized
422
Validation error
application/json
post
POST /api/user/orders HTTP/1.1
Host: v3.proxy-solutions.net
Content-Type: application/json
Accept: */*
Content-Length: 73

{
  "service_id": 1,
  "location_id": 1,
  "quantity": 1,
  "period": 1,
  "multiport": true
}
{
  "lang": "EN",
  "currency": "USD",
  "orders": [
    {
      "id": 10000,
      "status": "active",
      "service": {
        "id": 4,
        "provider": "server-proxies",
        "name": "City proxies"
      },
      "location": {
        "id": 24,
        "type": "city",
        "name": "New York",
        "country_name": "USA"
      },
      "operator": {
        "id": 37,
        "name": "Orange"
      },
      "period": 30,
      "quantity": 1,
      "minimal_payment": 1.81,
      "amount": 1.81,
      "converted_amount": 100,
      "auto_continuation": true,
      "allowed_operations": [],
      "resources_allocated": true
    }
  ]
}