웹훅 페이로드 빌더
테스트를 위한 웹훅 페이로드를 생성합니다. GitHub, Stripe, Slack, Discord, Jira 및 일반 웹훅을 지원합니다.
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 - 기술 세부 정보
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.
명령줄 대안
curl -X POST \
-H 'Content-Type: application/json' \
-d '{"event": "test"}' \
https://your-server.com/webhook