Skip to main content
A User Account represents an end user within your platform — such as a customer, client, or business partner. These accounts are created on their behalf to enable them to access and interact with your services.

Event Schema

FieldTypeDescriptionRequired
firstNamestringFirst name of the userRequired for USER account type
lastNamestringLast name of the userRequired for USER account type
emailstringEmail address of the user or businessRequired
identifierstringInternal transaction or entity identifierRequired
typestringType of account (USER or BUSINESS)Required
businessNamestringName of the business (applicable if type is BUSINESS)Required for BUSINESS account type

Example Payload

{
  "firstName": "Timilehin",
  "lastName": "Makinde",
  "email": "makindetimi@gmail.com",
  "identifier": "user-98314",
  "type": "USER",
  "businessName": null
}