POS webhook events

pos:create

Description: Triggered when a new POS is created.

Payload Structure:

{
  event: 'pos:create',
  status: 'success' | 'error' | 'pending',
  data: POS
}

pos:update

Description: Triggered when an existing POS is edited or updated.

Payload Structure:

{
  event: 'pos:update',
  status: 'success' | 'error' | 'pending',
  data: POS
}

pos:delete

Description: Triggered when a POS is deleted from the system.

Payload Structure:

{
  event: 'pos:delete',
  status: 'success' | 'error' | 'pending',
  data: POS
}