List Orders

Retrieves a paginated list of orders created between the specified start and end dates. Supports filtering by customer email.

Endpoint Details

GET /orders

Query Parameters

Name
Type
Description
Required

startDate

string

Start date for filtering orders.

endDate

string

End date for filtering orders.

customerEmail

string

Filter orders by customer email address

page

number

Page number for pagination. Defaults to 1.

limit

number

Number of orders per page. Defaults to 10.

Query Limitations

Headers

Header
Value

Content-Type

application/json

Authorization

Bearer <YOUR_ACCESS_TOKEN>

Response Details

Field
Type
Description

statusCode

number

HTTP status code of the response

message

string

A brief message describing the result of the API call

metadata

Contains metadata about the API call

data

Order object

Sample Request and Response

Last updated