Notification Webhook

This is an outbound webhook for issuers to receive notifications from Kard. Learn more about how to configure, ingest and trigger your notification webhooks here.

Payload

The payload of this webhook request is an object.
dataobjectRequired

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "data": {
3 "type": "earnedRewardSettled",
4 "attributes": {
5 "attributionUrl": "www.attribution.com/token",
6 "commissionEarned": {
7 "type": "cents",
8 "value": 72
9 },
10 "message": "You have earned a 72 cent reward on your transaction at McDonald's",
11 "name": "McDonald's",
12 "surveyUrl": "www.survey.com"
13 },
14 "id": "d80a6f28-1b24-4d65-9e42-e1cf3379bc98",
15 "relationships": {
16 "user": {
17 "data": {
18 "type": "user",
19 "id": "1234567890"
20 }
21 }
22 }
23 }
24}
Built with