Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.centryos.xyz/llms.txt

Use this file to discover all available pages before exploring further.

A User Account represents an end user within your platform — such as a customer or client. 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
}