curl --request GET \
--url https://dev.sbx.imprint.co/v2/customers/{customer_id}/transactions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "E777214A-2D11-4CAD-9E8F-E1BD71D9FE67",
"customer_id": "9B5E1EE0-2E1C-46E7-81B9-3C3917204BE4",
"payment_method_id": "DCBFC736-2286-42DD-897D-160DCA80AED2",
"amount": 123,
"currency": "USD",
"status": "APPROVED",
"network_transaction_id": "<string>",
"created_at": "2025-02-13T19:08:07.000Z",
"intent_id": "5B30532B-5B5B-4826-8DE2-429C57B705FD",
"authorization_code": "ABCD",
"purchase_method": "CHIP",
"partner_transaction_id": "<string>",
"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
}curl --request GET \
--url https://dev.sbx.imprint.co/v2/customers/{customer_id}/transactions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "E777214A-2D11-4CAD-9E8F-E1BD71D9FE67",
"customer_id": "9B5E1EE0-2E1C-46E7-81B9-3C3917204BE4",
"payment_method_id": "DCBFC736-2286-42DD-897D-160DCA80AED2",
"amount": 123,
"currency": "USD",
"status": "APPROVED",
"network_transaction_id": "<string>",
"created_at": "2025-02-13T19:08:07.000Z",
"intent_id": "5B30532B-5B5B-4826-8DE2-429C57B705FD",
"authorization_code": "ABCD",
"purchase_method": "CHIP",
"partner_transaction_id": "<string>",
"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
}Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>
The unique identifier for the Imprint customer
"2EE24580-B97B-4949-A65C-929CCB9B9B8D"
Limits the number of returned results
x >= 1A cursor for use in pagination. An id that defines your place in the list.
List of customer transactions
Show child attributes
"E777214A-2D11-4CAD-9E8F-E1BD71D9FE67"
The imprint customer ID for the transaction
"9B5E1EE0-2E1C-46E7-81B9-3C3917204BE4"
Identifies the payment method used for the transaction
"DCBFC736-2286-42DD-897D-160DCA80AED2"
Transaction amount in min units.
The 3-character currency code of the amount in ISO 4217 format (e.g., "USD")
"USD"
APPROVED, UPDATED, VOIDED, CAPTURED, REFUNDED "APPROVED"
The network's unique identifier for the transaction. Examples include Visa Transaction ID, Mastercard Trace ID, and American Express Network Reference ID
the RFC-3339 timestamp when the transaction was created
"2025-02-13T19:08:07.000Z"
Reference to the original transaction intent
"5B30532B-5B5B-4826-8DE2-429C57B705FD"
Code authorizing the transaction.
"ABCD"
How the purchase was completed.
CHIP, CONTACTLESS, KEYEDIN, ONLINE, SWIPE, QRCODE, OCR, UNKNOWN "CHIP"
The partner's unique transaction id
the RFC-3339 timestamp when the transaction was last updated
"2025-02-13T19:08:07.000Z"
Show child attributes
Unique identifier of the merchant assigned by the payment network.
"234923454545"
Name of the merchant where the transaction occurred.
"Target"
Name of the merchant category.
"Grocery Stores"
Code associated with the merchant category.
"5411"
Mailing address information
Show child attributes
Primary street address
"123 Main St"
Secondary street address (apartment, suite, etc.)
"Apt 4B"
City name
"San Francisco"
State or province
"CA"
ZIP or postal code
"94105"
ISO-3166-1 alpha-3 Country Code
"USA"
{ "platform_version": "2.1.0" }