GET
/
v2
/
transactions
curl --request GET \
  --url https://dev.sbx.imprint.co/v2/transactions
{
  "data": [
    {
      "id": "E777214A-2D11-4CAD-9E8F-E1BD71D9FE67",
      "intent_id": "5B30532B-5B5B-4826-8DE2-429C57B705FD",
      "customer_id": "9B5E1EE0-2E1C-46E7-81B9-3C3917204BE4",
      "authorization_code": "ABCD",
      "payment_method_id": "DCBFC736-2286-42DD-897D-160DCA80AED2",
      "purchase_method": "CHIP",
      "amount": 123,
      "currency": "USD",
      "status": "APPROVED",
      "network_transaction_id": "<string>",
      "partner_transaction_id": "<string>",
      "created_at": "2025-02-13T19:08:07.000Z",
      "updated_at": "2025-02-13T19:08:07.000Z",
      "merchant": {
        "network_id": "234923454545",
        "name": "Target",
        "category": "Grocery Stores",
        "category_code": "5411",
        "address": {
          "street_line1": "123 Main St",
          "street_line2": "Apt 4B",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94105",
          "country": "USA"
        }
      },
      "metadata": {
        "platform_version": "2.1.0"
      }
    }
  ],
  "has_more": true,
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

Query Parameters

status
enum<string>
Available options:
APPROVED,
UPDATED,
VOIDED,
CAPTURED,
REFUNDED
Example:

"APPROVED"

max_amount
integer

Filters results based on maximum amount

min_amount
integer
default:0

Filters results based on minimum amount

Required range: x >= 0
limit
integer
default:10

Limits the number of returned results

Required range: x >= 1
starting_after
string

A cursor for use in pagination. An id that defines your place in the list.

Response

200 - application/json

List of transactions

The response is of type object.