List payment orders
GET/openapi/2025-06/shoplazza-payment/payment-orders
Returns a paginated list of payment orders, optionally filtered by status and creation time range.
Request
Query Parameters
succeeded: payment completed successfully and funds are confirmedfailed: payment failed and funds were not processedrequires_action: additional action required to complete the payment (e.g., 3D Secure verification)init: payment order created but not yet processedcanceled: payment order canceled; funds were not processed or have been returnedprocessing: payment is being processed; final result pending
Cursor for pagination
Page size (1-100, default 10)
Filter payment orders created at or after this Unix timestamp (e.g., 1730548810)
Filter payment orders created at or before this Unix timestamp (e.g., 1730548810)
Filter payment orders by status:
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
succeeded: payment completed successfully and funds are confirmedfailed: payment failed and funds were not processedrequires_action: additional action required to complete the payment (e.g., 3D Secure verification)init: payment order created but not yet processedcanceled: payment order canceled; funds were not processed or have been returnedprocessing: payment is being processed; final result pending- ]
error code
error message
data object
list object[]
List of payment order records
Payment order ID
fee_details object
Breakdown of transaction fees charged on this payment order
Transaction fee amount charged on the payment order
Currency code of the transaction fee (e.g., USD, EUR)
Foreign settlement fee charged when settling across regions or currencies
Time when the payment order was created (e.g., 2018-11-02T12:30:10Z)
Time when the payment order reached its final state (e.g., 2018-11-02T12:30:10Z)
Current payment status of the order:
Payment method used for the order (e.g., credit card, PayPal)
Brand of the credit card used for the payment (e.g., Visa, Mastercard)
Currency in which the shopper paid (e.g., USD, EUR)
Amount paid by the shopper in pay_currency
Payment amount converted into the store's base currency
Reserve amount
Identifier of the order this payment is associated with
Total service charge amount for this payment order
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"id": "string",
"fee_details": {
"trans_fee_amount": "string",
"fee_currency": "string",
"foreign_settlement_fee": "string"
},
"created_at": "string",
"finished_at": "string",
"payment_status": "string",
"payment_method": "string",
"card_brand": "string",
"pay_currency": "string",
"pay_mount": "string",
"converted_amount": "string",
"reserve_amount": "string",
"order_id": "string",
"fee_amount": "string"
}
],
"cursor": "string",
"has_more": true
}
}