Get payment order
GET/openapi/2025-06/shoplazza-payment/payment-orders/:id
Returns the details of a single payment order identified by its unique ID.
Request
Path Parameters
Payment order ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
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
payment_order object
Detailed information of the payment order
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
{
"code": "string",
"message": "string",
"data": {
"payment_order": {
"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"
}
}
}