User Registered Webhook
This event is triggered when a new user registers for an account
To subscribe to this webhook, please set up a URL endpoint capable of receiving POST requests.
Request Details
The request will POST a JSON payload that conforms to the following Typescript interface:
export interface UserRegisteredWebhookPayload {
name: string;
email: string;
objectId: string;
subPortalId?: string;
usergroups: string[];
timeRegistered: string;
customAttributes: Record<string, unknown>;
preferences?: UserPreferences;
previousValues: PreviousValues;
}
Last updated
Was this helpful?