Listar las notificaciones enviadas a una membresía
Wallet passes
GET /v1/loyalty/memberships/{id}/passes/notifications
List the wallet messages already sent to a membership, newest first, with how many devices each reached.
GET
Listar las notificaciones enviadas a una membresía
Returns the wallet messages already sent to a membership, newest first. Check it before notifying again — it is the only record of what this customer has already been told.
Endpoint
Required scope
loyalty:read
Headers
Path parameters
Example request
Response
200 OK
401 Unauthorized
Missing, invalid, revoked, or expired token.403 Forbidden
The token does not have theloyalty:read scope.
404 Not Found
No membership with that id in your company.502 Bad Gateway
The loyalty service is unreachable.Operational notes
- This response is not paginated and is capped. It returns the most recent messages with a
totalfor convenience; it is a recency view, not a full archive. deliveredis the device count at send time, matching thenotifiedfigure the notify call returned. A0means nobody had the card registered then.- A message is recorded even when it reaches nobody. The history tells you what you tried to say, not only what landed.
- Use it as a frequency guard. Nothing in the API rate-limits wallet notifications per customer beyond the global request limits, so if you are running an automated nudge, check
created_athere before sending another.