Get Orders

Get All Orders

POST /v1/orders

This API will return all account orders.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <idToken>

Body

NameTypeDescriptionRequired

page

number

Page number if has more than 1

No

Response

{
    "statusCode": 200,
    "statusMessage": "OK",
    "page": 1,
    "payload": [
            {
            "id": "cdcf...",
            "code": "4JA...",
            "amount": "100",
            "receivedAmount": "90",
            "realAmount": "45",
            "product": "PS", // Product Code
            "status": "Issue", //
            "createdAt": "2024-10-20T12:30:31.995Z",
            "updatedAt": "2024-10-20T15:55:28.459Z"
        }
    ],
    "hasMore": true
}

Last updated