Groups

Payloads

Each event will consist of

Payload FieldDescription
payload.eventThe category of the event (groups)
payload.data.idThe unique identifier for the group.
payload.data.operationThe action performed on the resource (groups_created, groups_updated, groups_deleted)
payload.data.last_updated_atUnix timestamp indicating when the event occurred

Example Payloads

{
   "payload":{
      "event":"groups",
      "data":{
         "id":46,
         "operation":"groups_created",
         "last_updated_at":1722519184
      }
   }
}

Get Group Details

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


Did this page help you?