Skip to main content
Version: 202607

List order transactions

GET 

/openapi/2026-07/orders/:order_id/transactions

Retrieve all transactions attached to the specified order, including status, payment channel, amount, and gateway response details.

Request

Path Parameters

    order_id stringrequired

    Order ID

Query Parameters

    status string

    Transaction status:

    • authorized: the transaction has been authorized but not yet captured
    • void: the transaction has been canceled
    • processing: the transaction is currently being processed
    • success: the transaction was successfully completed
    • error: the transaction failed due to an error
    • refunding: a refund for the transaction is in progress
    • refunded: the transaction has been successfully refunded
    • refund_failed: the refund attempt for the transaction has failed
    • expire: the transaction has expired
    payment_channel string

    Payment channel (e.g., paypal)

Responses

OK

Schema
    codestring

    error code

    messagestring

    error message

    data object
    transactions object[]

    List of transactions

  • Array [
  • idstring

    Transaction ID

    order_idstring

    Order this transaction belongs to ID

    payment_channelstring

    Payment channel that processed the transaction (e.g., paypal)

    messagestring

    Message returned by the payment gateway, typically describing the result or error reason

    created_atstring

    Time when the transaction was created (e.g., 2018-11-02T12:30:10Z)

    testboolean

    Whether this is a test transaction

    error_codestring

    Error code returned by the payment gateway when the transaction fails

    amountstring

    Transaction amount

    currencystring

    Currency code of the transaction amount (e.g., USD)

    trade_idstring

    Transaction reference number returned by the third-party payment provider

    statusstring

    Transaction status:

    • authorized: the transaction has been authorized but not yet captured
    • void: the transaction has been canceled
    • processing: the transaction is currently being processed
    • success: the transaction was successfully completed
    • error: the transaction failed due to an error
    • refunding: a refund for the transaction is in progress
    • refunded: the transaction has been successfully refunded
    • refund_failed: the refund attempt for the transaction has failed
    • expire: the transaction has expired
    payment_namestring

    Display name of the payment method used for the transaction

    payment_detail object

    Payment method details, such as card information

    card_numberstring

    Card number

    card_monthstring

    Card expiration month

    card_yearstring

    Card expiration year

    card_first_namestring

    Cardholder first name

    card_last_namestring

    Cardholder last name

    card_first_fixstring

    Card number prefix (BIN, the leading digits identifying the issuer)

    card_last_fourstring

    Last four digits of the card number

    avs_result_codestring

    Address Verification System (AVS) result code returned by the payment gateway

    cvv_result_codestring

    Card Verification Value (CVV) result code returned by the payment gateway

  • ]