Skip to main content
GET
/
v2
/
loyalties
/
programs
/
{programId}
/
members
/
{memberId}
/
cards
/
{cardId}
/
transactions
List card transactions
curl --request GET \
  --url https://api.voucherify.io/v2/loyalties/programs/{programId}/members/{memberId}/cards/{cardId}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'X-App-Id: <api-key>' \
  --header 'X-App-Token: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "card_id": "<string>",
      "program_id": "<string>",
      "member_id": "<string>",
      "card_definition_id": "<string>",
      "card_type": "<string>",
      "type": "ADMIN_CREDIT",
      "details": {
        "reason": "<string>",
        "metadata": {},
        "rejection": {
          "reason": "<string>",
          "details": "<string>"
        },
        "points": {
          "total": 123,
          "expiration_date": "2023-12-25",
          "expiration_type": "<string>",
          "date": "2023-12-25",
          "type": "<string>"
        },
        "result": {},
        "reward_id": "<string>",
        "bucket": {}
      },
      "status": "PENDING",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "cursor": {
    "next": "<string>",
    "expires_at": "2023-11-07T05:31:56Z"
  },
  "object": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.voucherify.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

X-App-Id
string
header
required
X-App-Token
string
header
required

Path Parameters

programId
string
required

Unique program identifier

memberId
string
required

Unique member identifier

cardId
string
required

Unique card identifier

Query Parameters

limit
integer
default:10

Number of results to return (1-100, default 10)

Required range: 1 <= x <= 100
order

Sort order for results

Available options:
-created_at,
created_at
cursor
string

Cursor token for pagination

Response

List of card transactions

data
object[]
cursor
object

Cursor for fetching the next page of results.

object
string
Allowed value: "list"
Last modified on May 11, 2026