---
title: "Get Partner Card Transactions"
method: GET
path: "/partner_cards/{identifier}/transactions"
tags: ["Cards"]
---

# Get Partner Card Transactions

`GET /partner_cards/{identifier}/transactions`

Retrieve a paginated list of all transactions for a specific partner card. This endpoint provides detailed transaction history including purchase information, amounts, and status.

## Path parameters

- `identifier` string, required

## Query parameters

- `page` integer
- `per_page` integer

## Headers

- `Content-Type` string
- `Authorization` string

## Response `200`

Successful response

- object
  - `data` object[]
    - `kind` 'purchase' | 'refund' | 'authorization' — Type of transaction
    - `merchant_name_formatted` string — Formatted merchant name for display
    - `amount_currency` string — Currency code for the transaction amount
    - `billing_amount_currency` string — Currency code for the billing amount
    - `status` 'success' | 'failed' | 'pending' — Transaction status
    - `card_last4` string — Last 4 digits of the card used
    - `id` string — Unique transaction identifier
    - `merchant_name` string — Raw merchant name
    - `amount` number — Transaction amount
    - `billing_amount` number — Billing amount
    - `card_name` string — Name of the card
    - `card_holder_name` string — Name of the card holder
    - `created_at` string — Transaction creation date and time
    - `updated_at` string — Transaction last update date and time
    - `expense` object — Associated expense information
  - `pagination_meta` object
    - `page` number
    - `per_page` number
    - `total_pages` number
    - `next_page` number
    - `prev_page` number
    - `from` number
    - `to` number
    - `total_count` number

## Other responses

- `403` — Unauthorised
- `404` — Card not found
- `500` — Unexpected error

---

[API](https://skmtc.net/mamopay/apis/cards.md) · [All operations](https://skmtc.net/mamopay/apis/cards/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mamopay/cards/versions/9bdabbad57b0/schema)
