List member activities
curl --request GET \
--url https://api.voucherify.io/v2/loyalties/programs/{programId}/members/{memberId}/activities \
--header 'Authorization: Bearer <token>' \
--header 'X-App-Id: <api-key>' \
--header 'X-App-Token: <api-key>'{
"data": [
{
"id": "<string>",
"type": "<string>",
"data": {},
"created_at": "2023-11-07T05:31:56Z",
"group_id": "<string>",
"source": {
"user": {
"id": "<string>"
},
"api_key": {
"name": "<string>",
"app_id": "<string>",
"client_app_id": "<string>"
}
}
}
],
"cursor": {
"next": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
},
"object": "<string>"
}List member activities
⚠️ BETA endpoint
This is a work-in-progress documentation of a BETA endpoint. The parameters, fields, request and response bodies, and other data may subject to change. If you want to share feedback or improvements, contact Voucherify support or your Technical Account Manager.
Lists activities for a specific member with optional filtering by id, type, and created_at. Uses cursor-based pagination.
Activity types include:
vl.member.createdvl.member.deletedvl.member.activatedvl.member.deactivatedvl.member.card.assignedvl.member.card.unassigned
GET
/
v2
/
loyalties
/
programs
/
{programId}
/
members
/
{memberId}
/
activities
List member activities
curl --request GET \
--url https://api.voucherify.io/v2/loyalties/programs/{programId}/members/{memberId}/activities \
--header 'Authorization: Bearer <token>' \
--header 'X-App-Id: <api-key>' \
--header 'X-App-Token: <api-key>'{
"data": [
{
"id": "<string>",
"type": "<string>",
"data": {},
"created_at": "2023-11-07T05:31:56Z",
"group_id": "<string>",
"source": {
"user": {
"id": "<string>"
},
"api_key": {
"name": "<string>",
"app_id": "<string>",
"client_app_id": "<string>"
}
}
}
],
"cursor": {
"next": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
},
"object": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique program identifier
Unique member identifier
Query Parameters
Number of results to return (1-100, default 10)
Required range:
1 <= x <= 100Sort order for results
Available options:
created_at, -created_at Cursor token for pagination
Available options:
AND, OR Maximum array length:
100Available options:
vl.member.created, vl.member.deleted, vl.member.activated, vl.member.deactivated, vl.member.card.assigned, vl.member.card.unassigned Last modified on June 2, 2026
Was this page helpful?
⌘I

