Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BD-3401: Updates to Currents #7970

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ This event occurs when a specific custom event is triggered. Use this to track w
// Custom Event: users.behaviors.CustomEvent
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"app_id": (optional, string) ID for the app on which the user action occurred,
Expand Down Expand Up @@ -97,6 +98,7 @@ Purchases are special custom events and come with a JSON encoded string of custo
// Purchase Event: users.behaviors.Purchase
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"app_id": (optional, string) ID for the app on which the user action occurred,
Expand Down Expand Up @@ -138,6 +140,7 @@ When a user starts their first session, both a `FirstSession` and a `SessionStar
// Session Start: users.behaviors.app.FirstSession
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"time": (required, int) 10-digit UTC time of the event in seconds since the epoch,
Expand Down Expand Up @@ -174,6 +177,7 @@ When a user starts their first session, both a `FirstSession` and a `SessionStar
// Session Start: users.behaviors.app.SessionStart
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"app_id": (required, string) ID for the app on which the user action occurred,
Expand Down Expand Up @@ -206,6 +210,7 @@ When a user starts their first session, both a `FirstSession` and a `SessionStar
// Session End: users.behaviors.app.SessionEnd
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"app_id": (required, string) ID for the app on which the user action occurred,
Expand Down Expand Up @@ -234,6 +239,7 @@ This event is triggered when a user visits a specified location. Use this to tra
// Location Event: users.behaviors.Location
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"app_id": (required, string) ID for the app on which the user action occurred,
Expand Down Expand Up @@ -271,6 +277,7 @@ This event occurs when an app installation is attributed to a source. Use this t
// Install Attribution Event: users.behaviors.InstallAttribution
{
"id": (required, string) unique ID of this event,
"app_group_id": (required, string) Braze ID of the workspace this user belongs to,
"user_id": (required, string) Braze user ID of the user,
"external_user_id": (optional, string) External ID of the user,
"time": (required, int) 10-digit UTC time of the event in seconds since the epoch,
Expand Down
Loading