Assign Offers to Users Using Braze Webhook
Sanity Setup
Create a Config Offer (e.g. config offer for for BK UK)
you will need a different Config Offer created for each offer you would like to assign using Braze
save the
Loyalty Engine ID
of the template offer to input into Braze afterwithin this config offer, in the
Mechanics
dropdown underBenefits
you will need to link the offer benefits (e.g. Picker or Offer Combo)Make sure to add the config offer to the list of Live Config Offers in the
Loyalty Offers UI
in Sanity, so the offer shows in the app to the user after it is assigned
If the same offer is assigned multiple times, the user will see the same offer added multiple times to their offer list. This means that the user will see multiple instances of the same offer in their offer list - as many as offer assignments done for that offer. Each offer will maintain their own configuration settings
Braze Configuration
Body request
{ "email": "{{${email_address}}}", "source": "braze-test", "rank": 123456, (optional) "configId": "Loyalty engine id of config offer", "ruleParams": { "startDate": "yyyy-mm-dd", "endDate": "yyyy-mm-dd" } }
Replace
configId
with the Loyalty Engine ID of the offer you want to assign using Brazesource
should bebraze
in Production;braze-test
in lower environments (Dev, Staging)email
-> leave as is
Note that in the past we relied on "userId": "{{${user_id}}}"
, but after the EUC1 user data migration all campaigns should use "email": "{{${email_address}}}"
startDate
andendDate
-> required fields; theendDate
must be set after thestartDate
- this represents the duration of time the offer assignment will be available forrank
field (optional) determines the sequence priority of the assigned personalized offer. The lower the number, the higher the priority (i.e. 1 would rank at the top)
Request headers
Webhook URL
the Hot path should be used for any user triggered campaigns that should happen in realtime
ie: T-Mobile Tuesdays, sign up bonuses
the Cold path should be used for any marketer triggered campaigns that can be processed over time
ie: mass offers assignments, mass points updates
Example of Hot Webhook URL in Production:
https://prod-bk-loyalty-middleware.rbictg.com/bulk-action/hot/create-offer
Example of the Cold Webhook URL in Production:
https://prod-bk-loyalty-middleware.rbictg.com/bulk-action/cold/create-offer
If you would like to test in Staging the Offer assignment first, just replace prod
with staging
in the Webhook URL.
Markets in EU Timezone and APAC Timezone should add euc1-
and apse1-
prefixes to the URL respectively (e.g., https://euc1-prod-bk-loyalty-middleware.rbictg.com/bulk-action/cold/create-offer
)
Content-type
Content-Type: application/json
X-Region
x-region: gb
x-region
is the 2-character ISO country code string of that market (e.g. gb
= United Kingdom, ch
= Switzerland)
X-Api-Key
x-api-key: string
Please reach out to Lopes da Costa, Valentina or another PM to get you access to the API Key in Production or Staging for your brand
If we want to set the end date as X seconds after assignment, we need to use the below logic "ruleParams": {
"startDate": "{{ "now" | date:"%F" }}",
"endDate": "{{ "now" | date:'%s' | plus:604800| date:"%F" }}"
}
Other resources
Assign Loyalty Points to Users Using Braze Webhook
This can be used for all Markets with Loyalty
Body request
{ "pointsEarned": 500, "source": "braze", "email": "{{${email_address}}}" }
Replace
pointsEarned
with the amount of points you would like users that receive this Braze web hook to receivesource
should bebraze
in Production;braze-test
in lower environments (Dev, Staging)email
-> leave as is
Note that in the past we relied on "userId": "{{${user_id}}}"
, but after the EUC1 user data migration all campaigns should use "email": "{{${email_address}}}"
Request headers
Webhook URL
the Hot path should be used for any user triggered campaigns that should happen in realtime
ie: T-Mobile Tuesdays, sign up bonuses
the Cold path should be used for any marketer triggered campaigns that can be processed over time
ie: mass offers assignments, mass points updates
Example of Hot Webhook URL in Production:
https://prod-bk-loyalty-middleware.rbictg.com/bulk-action/hot/assign-points
Example of the Cold Webhook URL in Production:
https://prod-bk-loyalty-middleware.rbictg.com/bulk-action/cold/assign-points
If you would like to test in Staging the Offer assignment first, just replace prod
with staging
in the Webhook URL.
Markets in EU Timezone and APAC Timezone should add euc1-
and apse1-
prefixes to the URL respectively (e.g., https://euc1-prod-bk-loyalty-middleware.rbictg.com/bulk-action/cold/assign-points
)
Content-type
Content-Type: application/json
X-Region
x-region: gb
x-region
is the 2-character ISO country code string of that market (e.g. gb
= United Kingdom, ch
= Switzerland)
X-Api-Key
x-api-key: string
Please reach out to Lopes da Costa, Valentina or another PM to get you access to the API Key in Production or Staging for your brand