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

Order list reception

PreviousOrder managementNextPlacing an order

Last updated 1 year ago

This request lets you receive the whole orders list on account.

Order list

get

List of user orders.

Query parameters
langstring · enumOptional

Language code

Default: ENPossible values:
currencystring · enumOptional

Currency code

Default: USDPossible values:
Responses
200
OK
application/json
401
Unauthorized
get
GET /api/user/orders HTTP/1.1
Host: v3.proxy-solutions.net
Accept: */*
{
  "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
    }
  ]
}