EventsJob Update Webhook

Job Update Webhook

Payload schema and behavior for the Job Update webhook, fired on job create, update, and archive events.

Overview

The Job Update webhook is triggered when a job event occurs in the connected ATS. It is the canonical way to keep your system synchronized with the source of truth.

Event Types

The webhook fires for three event types, distinguished by the event field in the payload:

EventTriggered when
CREATEDA new job is created in the ATS.
UPDATEDAny field on an existing job is modified (title, description, location, etc.).
ARCHIVEDA job is removed from the ATS.

Payload

{
  "event": "UPDATED",
  "company_id": 1,
  "job_id": 12345,
  "external_id": "EU-42",
  "occurred_at": "2026-07-15T10:32:18Z"
}
FieldTypeDescription
eventstringOne of job.created, job.updated, job.archived.
company_idintegerThe Kini company ID the job belongs to.
job_idintegerThe Kini internal job ID.
external_idstringThe job's ID in the connected ATS.
occurred_atstringISO 8601 timestamp of when the event happened in the ATS.

Delivery & Retries

Webhook deliveries are made over HTTPS POST with a JSON body. We retry failed deliveries with exponential backoff for up to 24 hours. Your endpoint must return a 2xx status code within 10 seconds to be considered successful.

Authentication

Every delivery includes a Kini-Signature header containing an HMAC-SHA256 signature of the body, computed with the signing secret configured for your company. Verify it on your side before processing.

Setup

Configure your endpoint URL in the Kini Partner App under Webhooks → Job Updates. Contact support@getkini.com if you need help.