Skip to main content
GET
/
v2
/
loyalties
/
rewards
/
{id}
/
activities
List reward activities
curl --request GET \
  --url https://api.voucherify.io/v2/loyalties/rewards/{id}/activities \
  --header 'Authorization: Bearer <token>' \
  --header 'X-App-Id: <api-key>' \
  --header 'X-App-Token: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "type": "vl.reward.created",
      "data": {
        "reward": {
          "id": "<string>",
          "name": "<string>",
          "type": "MATERIAL",
          "status": "ACTIVE",
          "metadata": {},
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "object": "<string>",
          "material": {
            "type": "PRODUCT",
            "product": {
              "id": "<string>"
            },
            "sku": {
              "product_id": "<string>",
              "id": "<string>"
            }
          },
          "digital": {
            "type": "DISCOUNT_COUPONS",
            "discount_coupons": {
              "campaign_id": "<string>"
            },
            "gift_vouchers": {
              "campaign_id": "<string>",
              "balance": 1
            }
          }
        }
      },
      "created_at": "2023-11-07T05:31:56Z",
      "reward_id": "<string>",
      "group_id": "<string>",
      "source": {
        "channel": "USER_PORTAL",
        "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>"
}

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

id
string
required

Unique reward identifier.

Query Parameters

limit
integer
default:10

Maximum number of results to return (1–100, default 10).

Required range: 1 <= x <= 100
order

Sort order for activities.

Available options:
created_at,
-created_at
cursor
string

Pagination cursor returned from a previous response.

Response

Paginated list of reward activities.

Paginated list of reward activities.

data
object[]
required
cursor
object
required

Null when there are no more pages.

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