User Updated Webhook
Triggered when a user's account details are updated
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:
interface UserUpdatedWebhookBody {
objectId: string;
name: string;
email: string;
timeRegistered: string;
usergroups: string[];
customAttributes: {
favouriteSweet: string;
};
previousValues: {
name: string;
email: string;
preferences: {
locale: string;
};
customAttributes: {
favouriteSweet: string;
};
};
}
Last updated
Was this helpful?