Order Status

Get Order Status

The method allows you to get the status of an order

Request

URL

https://api.belurk.com/orders/check-status?order_id=order_id

Sending Method

GET

CURL

  1. 1.curl --location 'https://api.belurk.com/orders/check-status?order_id=1001'
  2. 2.--header 'x-api-token: {{API_TOKEN}}'

Successful Response

Response Status: HTTP 200 OK

  1. 1.{
  2. 2. "data": {
  3. 3. "status": true
  4. 4. }
  5. 5.}

Failure Response

Response Status: HTTP 403 Forbidden

  1. 1.{
  2. 2. "data": null
  3. 3. "error": "Forbidden"
  4. 4.}