Get Transaction Details

Use the Get Transaction Details API endpoint to retrieve detailed information for a specific transaction associated with a customer's line of credit account.

📘

Early Access

Credit API endpoints are currently being finalised as part of ongoing product development. While we do not anticipate significant changes, some interfaces, behaviours, and documentation may be refined before general availability.

The Get Transaction Details endpoint enables you to retrieve detailed information for a specific transaction associated with a customer's line of credit account. Use this endpoint when you need to display the full details of an individual transaction, such as merchant information, billing cycle, and authorization amounts.

📘

More Information

For more information about the Explorer endpoints, see: Credit Explorer.

Example Request

Retrieve transaction details by making a GET request to the Get Transaction Details endpoint.

GET {{baseUrl}}/api/v1/credit/explorer/accounts/{account_id}/transactions/{transaction_id}

Path Parameters

ParameterDescription
account_idstring. Required. The unique identifier of the account.
transaction_idstring. Required. The unique identifier of the transaction.

Example Response

A successful request returns a 200 HTTP status code with the transaction details.

{
  "transactionId": "txn_123456",
  "accountId": "acc_123456",
  "amount": "49.99",
  "created": "2025-01-15T10:30:00Z",
  "valueDate": "2025-01-15",
  "cardId": "card_123456",
  "addressId": "addr_123456",
  "billingCycle": "2025-01",
  "description": "Coffee Shop",
  "merchantName": "The Coffee Shop",
  "merchantCategoryCode": "5812",
  "rawTransactionFeed": null,
  "status": "settled",
  "originalAuthAmount": "49.99"
}

Response Fields

AttributeDescription
transactionIdstring or null. The unique identifier of the transaction.
accountIdstring or null. The unique identifier of the account associated with the transaction.
amountstring or null. The transaction amount.
createdstring or null. The date and time the transaction was created.
valueDatestring or null. The date the transaction was applied to the account.
cardIdstring or null. The unique identifier of the card used for the transaction.
addressIdstring or null. The unique identifier of the address associated with the transaction.
billingCyclestring or null. The billing cycle in which the transaction occurred.
descriptionstring or null. A description of the transaction.
merchantNamestring or null. The name of the merchant associated with the transaction.
merchantCategoryCodestring or null. The merchant category code (MCC) that classifies the type of business.
rawTransactionFeedstring or null. The raw transaction feed data.
statusstring or null. The current status of the transaction.
originalAuthAmountstring or null. The original authorized amount of the transaction.


Did this page help you?