User Created Event (v1.0.0)

A user has confirmed the signup process for the service (or autoconfirmed). This is not the same as Customer Created.

Overview

This event is triggered when a new user has been successfully created. Once the user is verified, supporting systems will on this event create customer accounts in their respective systems. The event is raised by the Onboarding Step Function and also in case if autoconfirmed by the Auth adapter.

Architecture diagram

Payload example

Payload example
{
"User": {
"Id": "123e4567-e89b-12d3-a456-426614174000"
},
"Sub": "123e4567-e89b-12d3-a456-426614174000",
"Email": "johndoe@example.com",
"Reason": "Already got an account"
}

Reference which contains Id attribute is not required. Currently it duplicates the Sub field.

JSON Schema

7 properties
User objectnull
Sub string
required

Sub is the unique identifier for the user.

Email string <email>
required

Email address to the user

Reason string
required

Additional text information of why the signup was aborted.

Attributes object

Additional data that is not mandatory. Can be used for specific use cases.