웹훅 목록

Webhook 목록 조회

GET https://api.roundhr.com/v1/webhooks

등록된 Webhook 목록을 반환합니다. 페이지네이션이 적용됩니다.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

응답 예제

{
  "collection": [
    {
      "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"
    }
  ],
  "pagination": {
    "total": 1,
    "previous_page": null,
    "previous_page_token": null,
    "next_page": null,
    "next_page_token": null
  }
}

Last updated