Hi,
we are using webhooks for updating user profiles in our database. So far everything worked fine, but from today (or maybe yesterday) we can’t do this anymore for promotional “purchases” because the webhook event body is missing the app_id property. It is there for regular purchases.
promotional:
"api_version": "1.0",
"event": {
"aliases": [
"xxxxxxxxxxxxxxxx",
"$RCAnonymousID: xxxxxxxx"
],
"app_user_id": "xxxxxxxxxxxxxxxx",
regular:
"api_version": "1.0",
"event": {
"aliases": [
"$RCAnonymousID:xxxxxxxxxxxxxxxxxxxxxxxx"
],
"app_id": "appd5b6xxxxxxxx",
"app_user_id": "$xxxxxxxxxxxxxxxxxxxxxxxx",
Is this intentional or a bug?
Thanks!