GuidesAPI ReferenceChangelogDiscussions
Log In

📘

Note

All events include Session Properties, Device Properties, App Properties, and Shopify Properties that are present on the Event Object. For more information, refer to the Common Event Object & Metadata document.

Event Properties, however, are unique to every event and are outlined in this page.

The Account Created event fires when a user creates an account in your app. The Account Created event can be triggered from multiple sources so those details are included in the event payload as well.

The event properties unique to an account creation include:

  "event_properties": {
    "event_id": "D219332E-C92F-44D7-4420-70A2C521535A",
    "account_create_source": "product_favorited_collection",
    "account_create_source_id": "6664454369383",
    "account_create_source_title": "Pink Blouse",
    "account_create_source_price": "56.0",
    "multi_currency_code": "USD",
    "account_shopify_user_id": null
  }

event_id String : The unique identifier of the session associated with the event. This event will also exist on the Event object level as well.


account_create_source String : The distinct source in which the account gets created from. This can be from adding to favorites, accounts page, etc.

Note: To view all the various sources, reference the Event Sources page


account_create_source_id String : If the source is a product favorite, then this field will represent the product ID of the favorite item. Nullable if not a product


account_create_source_title String : If the source is a product favorite, then this field will represent product title of the favorited item. Nullable if not a product


account_create_source_price String : If the source is a product favorite, then this field will represent product price of the favorited item. Nullable if not a product


multi_currency_code String : The current currency the user has selected in the app


account_shopify_user_id String : The Shopify ID of the account that was just created (if available)