---
title: "GET /orders/{order_id}/transactions"
method: GET
path: "/orders/{order_id}/transactions"
tags: ["Orders"]
---

# GET /orders/{order_id}/transactions

`GET /orders/{order_id}/transactions`

Returns a collection of `Transaction` objects related to a BigCommerce Order.

## Response `200`

An array of transactions.

- TransactionCollectionResponse — Response payload for the BigCommerce Order Transactions API.
  - `data` Transaction[]
    - `event` 'purchase' | 'authorization' | 'capture' | 'refund' | 'void' | 'pending' | 'settled', required — Store event that created the transaction.
    - `method` 'credit_card' | 'electronic_wallet' | 'gift_certificate' | 'store_credit' | 'apple_pay_card' | 'apple_pay_token' | 'token' | 'custom' | 'offsite' | 'offline' | 'nonce', required — The payment method: `credit_card` - a credit-card transaction; `electronic_wallet` - an online wallet; `store_credit` - a transaction using store credit; `gift_certificate` - a transaction using a gift certificate; `custom` - manual payment methods; `token` - payment token; `nonce` - temporary payment token; `offsite` - online payment off the site (e.g., PayPal); `offline` - payment method that takes place offline.
    - `amount` number, float, required — Amount of money in the transaction.
    - `currency` string, ISO-4217, required — Currency used for the transaction.
    - `gateway` '2checkout' | 'adyen' | 'amazon' | 'authorizenet' | 'bankdeposit' | 'braintree' | 'cheque' | 'cod' | 'custom' | 'firstdatagge4' | 'giftcertificate' | 'hps' | 'instore' | 'klarna' | 'migs' | 'moneyorder' | 'nmi' | 'paypalexpress' | 'paypalpaymentsprous' | 'paypalpaymentsprouk' | 'plugnpay' | 'qbmsv2' | 'securenet' | 'square' | 'storecredit' | 'stripe' | 'testgateway' | 'usaepay', required — The payment gateway, where applicable.
    - `gateway_transaction_id` string — The transaction ID returned by the payment gateway for this transaction item.
    - `date_created` string, date-time — The datetime of the transaction.
    - `test` boolean — True if the transaction performed was a test, or if the gateway is in test mode.
    - `status` 'ok' | 'error' — Status of the transaction.
    - `fraud_review` boolean — Result of gateway fraud review, if any. Default is `false`.
    - `reference_transaction_id` integer — Identifier for an existing transaction upon which this transaction acts.
    - `offline` Offline — Offline payment (e.g., check or purchase order).
      - `display_name` string — Display name for the offline payment.
    - `custom` Custom — Custom payment from manual order.
      - `payment_method` string — Text entered for the payment method in the control panel.
    - `id` integer — Unique identifier for the transaction.
    - `order_id` string — Identifier for the BigCommerce Order with which this transaction is associated.
    - `payment_instrument_token` string — Token for an existing stored Credit Card used for this transaction, if any.
    - `avs_result` AVSResult — Address Verification Service (AVS) result from the payment gateway.
      - `code` string — AVS code.
      - `message` string — AVS message.
      - `street_match` string — AVS Code for street matching result.
      - `postal_match` string — AVS Code for postal matching result.
    - `cvv_result` CVVResult — Card Verification Value result from the payment gateway.
      - `code` string — CVV code.
      - `message` string — CVV message.
    - `credit_card` CreditCard — A credit-card model.
      - `card_type` string — The credit-card type: Visa, MasterCard, etc.
      - `card_iin` string — The IIN of a credit-card number.
      - `card_last4` string — The last 4 digits of a credit-card number.
    - `gift_certificate` GiftCertificate — A gift-certificate model.
      - `code` string — The gift-certificate code.
      - `original_balance` number, float — The balance on a gift certificate when it was purchased.
      - `starting_balance` number, float — The balance on a gift certificate at the time of this purchase.
      - `remaining_balance` number, float — The remaining balance on a gift certificate.
      - `status` 'active' | 'pending' | 'disabled' | 'expired' — The status of a gift certificate: `active` - gift certificate is active; `pending` - gift certificate purchase is pending; `disabled` - gift certificate is disabled; `expired` - gift certificate is expired.
    - `store_credit` StoreCredit — A store credit model.
      - `remaining_balance` string — Remaining balance of shopper's store credit.
  - `meta` CollectionMeta — Data about the response, including pagination and collection totals.
    - `pagination` Pagination — Data about the response, including pagination and collection totals.
      - `total` integer — Total number of items in the result set.
      - `count` integer — Total number of items in the collection response.
      - `per_page` integer — The amount of items returned in the collection per page, controlled by the limit parameter.
      - `current_page` integer — The page you are currently on within the collection.
      - `total_pages` integer — The total number of pages in the collection.
      - `links` object — Pagination links for the previous and next parts of the whole collection.
        - `previous` string — Link to the previous page returned in the response.
        - `current` string — Link to the current page returned in the response.
        - `next` string — Link to the next page returned in the response.

## Other responses

- `204` — No content found to fulfill request.
- `404` — The resource was not found.

---

[API](https://skmtc.net/bigcommerce/apis/bigcommerce-api.md) · [All operations](https://skmtc.net/bigcommerce/apis/bigcommerce-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bigcommerce/bigcommerce-api/revisions/90efb67b99f3/schema)
