Search Orders by OrderID

This operation returns a list of orders that match the provided search criteria.

SecuritybearerAuth
Request
Request Body schema: application/json
Array of objects (Filter)

Searches for orders based on the provided filter criteria. Use this request to retrieve one or more orders by orderId.

page
integer

Zero-based page index to fetch.
Example: 0 for the first page, 1 for the second, etc.

size
integer

Number of records per page. Choose a value that balances payload size and latency.

Responses
200

Requested order has been retrived sucessfully.

400

Invalid request

401

The request could not be authorized

500

The request could not be completed due to an internal error

post/api/v1/orders/search
Request samples
application/json
{
  • "filters": [
    ],
  • "page": 0,
  • "size": 0
}
Response samples
application/json
{
  • "orders": [
    ],
  • "pageInfo": {
    }
}