v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Orders::Transaction

List Transactions

List transactions for an order

get/orders/{order_id}/transactions

Path parameters

order_idinteger required

Query parameters

afterstring

ID of item after which the collection should be returned. More examples and info about pagination in our guides.

sort_order'asc' | 'desc'

Sort order of a list response. Use 'desc' to reverse the default 'asc' (ascending) sort order. Examples in our guides.

sort_property'id' | 'updated_at'

Sort property of a list response. The default is id and thus the created_at order. If you sort by other properties, we additionally sort by id implicitly as a secondary sort property, so that you can rely on the sort order to be deterministic even if the main sort property ends up with the same values.

Response

OK

idinteger

Transaction ID

public_idstring nullable

Transaction public ID

order_idinteger

Order ID

statusstring

Status

external_typestring nullable

Type

external_idstring

External ID

amountstring nullable

Amount

currencystring nullable

Currency

reasonstring nullable

Reason

adjusted_transaction_idstring nullable

Adjusted transaction

resultstring

Result

billing_payment_instruction_idstring nullable

Billing Payment Instruction ID

billing_payment_instruction_typestring nullable

Billing Payment Instruction Type

arnstring nullable

ARN

is_rebillboolean nullable

Is Rebill

rebill_numberstring nullable

Rebill Number

created_atstring nullable

Created

updated_atstring nullable

Updated

Example response

[
  {
    "id": 1,
    "public_id": "NpboZw",
    "order_id": 6,
    "status": "completed",
    "external_type": "sale",
    "external_id": "4a74b081c7ff7d8d7332e54d7d2a89df",
    "amount": "100.00",
    "currency": "USD",
    "reason": null,
    "adjusted_transaction_id": null,
    "result": "approved",
    "billing_payment_instruction_id": null,
    "billing_payment_instruction_type": null,
    "arn": null,
    "is_rebill": false,
    "rebill_number": null,
    "created_at": null,
    "updated_at": null
  }
]