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 AccessCredit 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 InformationFor 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
| Parameter | Description |
|---|---|
account_id | string. Required. The unique identifier of the account. |
transaction_id | string. 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
| Attribute | Description |
|---|---|
transactionId | string or null. The unique identifier of the transaction. |
accountId | string or null. The unique identifier of the account associated with the transaction. |
amount | string or null. The transaction amount. |
created | string or null. The date and time the transaction was created. |
valueDate | string or null. The date the transaction was applied to the account. |
cardId | string or null. The unique identifier of the card used for the transaction. |
addressId | string or null. The unique identifier of the address associated with the transaction. |
billingCycle | string or null. The billing cycle in which the transaction occurred. |
description | string or null. A description of the transaction. |
merchantName | string or null. The name of the merchant associated with the transaction. |
merchantCategoryCode | string or null. The merchant category code (MCC) that classifies the type of business. |
rawTransactionFeed | string or null. The raw transaction feed data. |
status | string or null. The current status of the transaction. |
originalAuthAmount | string or null. The original authorized amount of the transaction. |
Updated 4 days ago
