v1

latestOpenAPI 3.1.02026-07-241120379.1 KB

Read order status by Loop order id

This endpoint allows you to retrieve the current status of an order using its Loop internal order ID.

get/2023-10/order/status/{orderLoopId}

Path parameters

orderLoopIdinteger required

The unique identifier of the order in Loop.

Response

successboolean

Indicates whether the request was processed successfully.

messagestring

A message describing the result of the request.

codestring

The response code indicating the outcome of the request.

{"stackTrail":"paths:/2023-10/order/status/{orderLoopId}:get:responses:200:content:application/json:schema:properties:pageInfo","oasType":"schema","type":"unknown","description":"Pagination metadata. Returns null for this endpoint as pagination is not applicable."}

Example response

{
  "success": true,
  "message": "Order detail fetched successfully",
  "data": {
    "id": 64233153,
    "status": "UNPROCESSED"
  },
  "code": "SUCCESS"
}