웹훅 등록
Last updated
Last updated
curl -X POST https://api.roundhr.com/v1/webhooks \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <token>" \
-d '{
"callback_url": "https://example.com/webhook",
"signing_key": "your_secret_key",
"kinds": ["candidate_stage_changed", "feedback_created"]
}'{
"resource": {
"code": "WH12345678",
"active": true,
"provider": "round",
"callback_url": "https://example.com/webhook",
"signing_key": "your_secret_key",
"events": [
"candidate_stage_changed",
"feedback_created"
],
"created_at": "2025-01-15T00:00:00+09:00",
"updated_at": "2025-01-15T00:00:00+09:00"
}
}