Users

Payloads

Each event will consist of

Payload FieldDescription
payload.eventThe category of the event (users)
payload.data.idThe unique identifier for the user.
payload.data.operationThe action performed on the resource (users_created, users_updated, users_deleted)
payload.data.last_updated_atUnix timestamp indicating when the event occurred

Example Payloads

{
   "payload":{
      "event":"users",
      "data":{
         "id":46,
         "operation":"users_created",
         "last_updated_at":1722519184
      }
   }
}

Get User Details

After receiving a webhook event for a user, you can retrieve the full user details using the User API endpoint. Use the payload.data.id provided in the payload to fetch the latest state of the user.



Did this page help you?