Skip to main content
POST
/
api
/
v2
/
wallet
/
notifications
Send push notification via wallet pass
curl --request POST \
  --url https://api.zupy.com/api/v2/wallet/notifications/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "customer_id": "<string>",
  "type": "points_update",
  "message": "<string>"
}
'
{
  "data": {
    "notification_id": "<string>",
    "status": "queued"
  },
  "meta": {
    "cursor": "<string>",
    "has_next": true,
    "count": 123
  }
}

Authorizations

X-API-Key
string
header
required

API key for partner access via APISIX key-auth plugin

Body

Wallet push notification request parameters.

customer_id
string
required
Maximum string length: 27
type
enum<string>
required
  • points_update - Points Update
  • coupon_available - Coupon Available
  • program_update - Program Update
Available options:
points_update,
coupon_available,
program_update
message
string
required
Maximum string length: 500

Response

data
object
required

Wallet push notification result with notification ID and delivery status.

meta
object
required

Cursor-based pagination metadata matching envelope middleware output.