Skip to content
Chat on LINE

Receive events with webhooks

Subscribe to events, verify signatures, and handle redelivery.

Urbanice Admin1 min read
  • API
  • Webhooks

Setting up a webhook

  1. Provide an HTTPS endpoint URL.
  2. Select which event types to receive.
  3. Verify the signature on every request before processing it.
  4. Return 2xx quickly, then do the real work asynchronously.
Anything that does not return 2xx is retried, so your handler must be idempotent — the same event may arrive more than once.