Neue Bestellung erstellen

Proxy-Kauf

Die Methode zieht Geld vom Guthaben ab und erstellt eine neue Bestellung zum Kauf von Proxies

Anfrage

URL

https://api.belurk.com/orders/create

Sendemethode

POST

CURL

  1. 1.curl --location 'https://api.belurk.com/orders/create'
  2. 2.--header 'Content-Type: application/json'
  3. 3.--header 'x-api-token: {{API_TOKEN}}'
  4. 4.--data '{
  5. 5. "product_id": 1
  6. 6. "quantity": 10
  7. 7.}'

Erfolgreiche Antwort

Antwortstatus: HTTP 200 OK

  1. 1.{
  2. 2. "data": {
  3. 3. "order_id": 1816
  4. 4. }
  5. 5.}

Fehlerhafte Antwort

Antwortstatus: HTTP 500 Interner Serverfehler

  1. 1.{
  2. 2. "data": null
  3. 3. "error": "Внутренняя ошибка системы"
  4. 4.}