cURL
curl --request POST \ --url https://api.agentwallex.com/api/v1/webhooks/{id}/test \ --header 'X-API-Key: <api-key>'
{ "success": true, "status_code": 123, "response_time_ms": 123 }
Webhook 엔드포인트에 테스트 이벤트를 전송하여 핸들러가 올바르게 작동하는지 확인합니다.
whk_abc123
curl -X POST https://api.agentwallex.com/api/v1/webhooks/whk_abc123/test \ -H "X-API-Key: awx_your_api_key"
API key authentication. Keys are prefixed with awx_.
awx_
The webhook ID to test (e.g., whk_abc123).
Test event sent successfully.
Whether the test event was delivered successfully.
HTTP status code returned by the webhook endpoint.
Response time from the webhook endpoint in milliseconds.