PUSH AccountCreatedEvent object

Represents a new account being created.

Fields

Field Type Description
eventId
required
String The unique ID of the event.
eventType
required
String The type of the event (ACCOUNT_CREATED).
account
required
PUSH User object The account that was created.

Example

{
  "eventId": "ccb15000-a4cc-11ee-8c7b-f27c12d765c6",
  "eventType": "ACCOUNT_CREATED",
  "account": {
    "id": "_6SNK2JrIB69C0ZYUwIgdq",
    "name": "Bob",
    "emailAddress": "bob@example.com",
    "thirdPartyIds": [
      {
        "thirdParty": "EXAMPLE",
        "id": "abc123"
      }
    ],
    "organization": {
      "id": "LZUd9L8TGlAkKzaf3IEVGm"
    },
    "created": "2023-12-27T15:30:00.951Z"
  }
}

 

Last updated on