Skip to main content
Group webhooks notify you about changes related to group membership and updates. These events help you track when users are added to groups and when group information changes.

Event Types

event
Triggered when a user is added to a group

Common Properties

All group webhook events share these common properties:
integer
required
Timestamp when the event occurred
string
required
Event type identifier
object
required
Event-specific payload data

Group/User/Created Event

This event is triggered whenever a user is added to a group.

Payload Structure

object
required
Details about the user being added
object
required
Details about the group

Implementation Examples

Best Practices

  1. Event Processing
  • Process events asynchronously to ensure quick response
  • Implement idempotency to handle potential duplicate events
  • Store raw event data for debugging and auditing
  1. Error Handling
  • Implement proper error handling and logging
  • Set up monitoring for failed webhook processing
  • Handle network timeouts and retries appropriately
  1. Security
  • Validate webhook source using API keys or signatures
  • Use HTTPS endpoints for receiving webhooks
  • Implement rate limiting and request validation
  1. Integration Tips
  • Update related systems when group membership changes
  • Maintain audit logs of group membership changes
  • Consider implementing event queuing for reliable processing