Skip to main content
DevTools24

Construtor de Payload de Webhook

Gere payloads de webhook para teste. Suporta GitHub, Stripe, Slack, Discord, Jira e webhooks genéricos.

Usage Tips:
  • • Use these payloads to test your webhook handlers
  • • Send via cURL: curl -X POST -H "Content-Type: application/json" -d '...' URL
  • • Each generation creates unique IDs and timestamps
  • • Modify the JSON as needed for your test cases

Testing Webhook Handlers - Detalhes Técnicos

Webhooks are HTTP callbacks that deliver data to your server in real-time. Use these sample payloads to test your webhook handlers without waiting for actual events from third-party services.

Alternativa via Linha de Comando

curl -X POST \
  -H 'Content-Type: application/json' \
  -d '{"event": "test"}' \
  https://your-server.com/webhook

Referência

Ver Especificação Oficial