v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ApiPublic > WebhookSubscription

Updates a Webhook subscription

Updates a Webhook subscription

put/api/2026-07-01/resources/api_public/webhook_subscriptions/{id}

Path parameters

idstring required

Identifier of the webhook subscription

Request body

idstring required

Identifier of the webhook subscription

target_urlstring

URL where the webhook payload will be sent

subscription_typestring

Type of the webhook subscription

namestring

Name of the webhook subscription

challengestring

String to verify the subscription

enabledboolean

Boolean to enable/disable the subscription

api_version'2025-07-01' | '2025-10-01' | '2026-01-01' | '2026-04-01' | '2026-07-01'

API version of the webhook subscription that determines the schema of the payload

Example request

{
  "id": "1",
  "target_url": "https://webhook.site/",
  "subscription_type": "ats/job_posting/create",
  "name": "Webhook subscription of a job posting created",
  "challenge": "2bca4e6d-9aaf-4f11-9e5d",
  "enabled": true
}

Response

OK

idstring required

Identifier of the webhook subscription

target_urlstring required

URL where the webhook payload will be sent

typestring required

Type of the webhook subscription

company_idstring required

Company identifier of the webhook subscription

namestring

Name of the webhook subscription

challengestring

String to verify the subscription

enabledboolean required

Boolean to enable/disable the subscription

api_versionstring required

API version of the webhook subscription that determines the schema of the payload

Example response

{
  "id": "1",
  "target_url": "https://webhook.site/",
  "type": "ats/job_posting/create",
  "company_id": "1",
  "name": "Webhook subscription of a job posting created",
  "challenge": "2bca4e6d-9aaf-4f11-9e5d",
  "enabled": true,
  "api_version": "2026-07-01"
}