---
title: "Get Wallet Transaction History"
method: GET
path: "/wallet/{walletId}/transaction/{transactionId}/history"
tags: ["Transactions"]
---

# Get Wallet Transaction History

`GET /wallet/{walletId}/transaction/{transactionId}/history`

This API method allows the calling application to get the history of a Wallet Transaction.

## Path parameters

- `walletId` string, string, required
- `transactionId` string, string, required

## Query parameters

- `limit` integer
- `offset` integer
- `orderBy` 'walletTransactionHistoryId,ASC' | 'walletTransactionHistoryId,DESC', string

## Response `200`

OK

- object
  - `limit` integer — Results per page
  - `hasMoreResults` boolean — If true then there is a further page of results available
  - `offset` integer — Pagination offset
  - `orderBy` object[] — Order by criteria.
    - `name` 'walletTransactionHistoryId' — Field name being used for sorting can only be walletTransactionHistoryId
    - `order` 'ASC' | 'DESC' — Sorting direction.
  - `results` WalletTransactionHistoryEntity[] — Array of walletTransactionHistoryEntities
    - `walletTransactionHistoryId` string — Unique identifier for Wallet Transaction History
    - `walletTransactionId` string — Unique identifier for Wallet Transaction
    - `identityId` string — Unique identifier for Identity
    - `identity` string — Identity Value
    - `type` string — Wallet Transaction Type Value
    - `status` string — Wallet Transaction Status Value
    - `state` string — Wallet Transaction State Value
    - `expiryDate` string — Wallet Transaction Expiry Timestamp (date-time in ATOM format), when transaction should expiry and automatically be settled.
    - `basket` object[]
      - `contents` string — Basket contents
      - `summary` string — Basket summary
      - `payment` string — Basket payment
    - `location` LocationEntity[]
      - `location` string, string — [Optional] Outlet incoming identifier where Transaction has happened
    - `accounts` object[]
      - `accountId` string — Account ID
      - `accountTransactionId` string — Account Transaction ID
    - `meta` string — Wallet Transaction expiry
    - `dateCreated` string — Date this Wallet Transaction History was created
    - `lastUpdated` string — Wallet Transaction expiry

## Other responses

- `400` — Bad Request.
- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Not Found.
- `409` — Conflict
- `415` — Unsupported Media Type
- `423` — Locked
- `429` — Too Many Requests
- `500` — Server Error

---

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