Webhook Notifications

Webhooks allow you to receive real-time notifications to your endpoint for specific events

Such as updates in identity verification. They facilitate seamless integration with your systems, enabling proactive responses to various actions.

Webhook Management

Webhooks are managed through the Integration tab in the Workforce Dashboard. From here, you can:

  • Add new webhooks: Define a webhook name, event type, destination URL, and custom headers.
  • View existing webhooks: See all configured webhooks in a list, including their event type, destination URL, and actions.
  • Edit or delete webhooks: Update webhook settings or remove them as needed.

Adding a New Webhook

To add a webhook, follow these steps:

  1. Open the Integration Tab: Navigate to the Webhooks section.
  2. Click “Add New Webhook”: This will open a setup form.
  3. Configure Webhook Details:
    • Webhook Name: Enter a unique and descriptive name (e.g., “Verification Updates”).
    • Event Type: Select the type of event you wish to monitor (e.g., Verification Started, Verification Failed).
    • Destination URL: Provide the endpoint URL where notifications should be sent (e.g., https://yourdomain.com/webhooks).
    • Custom Headers (Optional): Add any required custom header key-value pairs. Use custom headers for authentication or metadata required by your system.
  4. Save the Webhook: Click “Save” to register the webhook.

Viewing and Managing Webhooks

Once configured, all webhooks will be displayed in a tabular format, showing:

  • Name: The webhook name for identification.
  • Event: The event type the webhook listens for.
  • Destination URL: The endpoint where notifications are sent.
  • Actions: Options to edit or delete the webhook.

Available Webhook Events

The table below outlines the supported webhook events:

Event NameEvent TypeDescription
Identity Enrolledidentity.enrolledTriggered when an identity is first verified in your organization.
Verification Startedverification.startedTriggered when a verification attempt begins.
Verification Succeededverification.succeededTriggered when a verification attempt succeeds. Allows retrieval of user data tied to the verification ID.
Verification Failedverification.failedTriggered when a verification attempt fails. Includes detailed failure reasons such as face match failure.
Data sharing consent revokedidentity.revokedTriggered when a user deletes their Incode identity or revoke data sharing consent with your organization.

Notification Payload Details

Each webhook notification includes common fields for tracking and context.
All reaquests come as POST requests to the endpoint configured. Headers are passed as key value pairs as configure. Payload is sent in json format. In your internal settings make sure that Accept Application/json is configured.

Common Fields for All Webhook Notifications

FieldTypeDescription
event_idstringUnique identifier for the notification event.
event_typestringType of event triggering the webhook (e.g., verification.failed).
timestampstringUTC timestamp of the event in ISO 8601 format
correlation_idstringOptional; You can provide an internal identifier at the start of verification
dataobjectAs described for each event type below

Data section for each event consists of the fields as below:

Webhook: Identity Enrolled

FieldTypeDescription
integration_idstringIdentifier for the integration for which verification has been requested.
identity_idstringUnique identifier of the user in Incode system
verification_trace_idstringTrace ID for tracking the verification process and fetching detailed result
user_namestringName of the user as in the directory for whom the verification has been requested
user_idstringUser id of the user as in the directory for whom the verification has been requested
workforce_user_typestringThe value tells whether the verification was request for an EMPLOYEE or a CANDIDATE
ipstringIP address of a mobile device where verification was performed in IPv4 format
latitudenumberIP geolocation latitude in decimal degrees
longitudenumberIP geolocation longitude in decimal degrees

Webhook: Verification Started

FieldTypeDescription
integration_idstringIdentifier for the integration for which verification has been requested.
verification_trace_idstringTrace ID for tracking the verification process.
user_namestringName of the user as in the directory for whom the verification has been requested
user_idstringUser id of the user as in the directory for whom the verification has been requested
workforce_user_typestringThe value tells whether the verification was request for an EMPLOYEE or a CANDIDATE
ipstringIP address of a mobile device where verification was performed in IPv4 format
latitudenumberIP geolocation latitude in decimal degrees
longitudenumberIP geolocation longitude in decimal degrees

Webhook: Verification Succeeded

FieldTypeDescription
integration_idstringIdentifier for the integration for which verification has been requested.
verification_trace_idstringTrace ID for tracking the verification process.
verification_idstringID of the verification tied to the data snapshot. This value is used in the fetch verification result endpoint.
identity_idstringUnique identifier of the user.
user_namestringName of the user as in the directory for whom the verification has been requested
user_idstringUser id of the user as in the directory for whom the verification has been requested
enrollment_typestringIn case this is a new user, the value will be ENROLLMENT; In case that this user is already enrolled, the value is RETURNING.
workforce_user_typestringThe value tells whether the verification was request for an EMPLOYEE or a CANDIDATE
ipstringIP address of a mobile device where verification was performed in IPv4 format
latitudenumberIP geolocation latitude in decimal degrees
longitudenumberIP geolocation longitude in decimal degrees

Webhook: Verification Failed

FieldTypeDescription
integration_idstringIdentifier for the integration for which verification has been requested.
verification_trace_idstringTrace ID for tracking the verification process.
failure_reasonstringReason for the verification failure (e.g., FACE_MATCH_FAILED).
user_namestringName of the user as in the directory for whom the verification has been requested
user_idstringUser id of the user as in the directory for whom the verification has been requested
enrollment_typestringIn case this is a new user, the value will be ENROLLMENT; In case that this user is already enrolled, the value is RETURNING.
workforce_user_typestringThe value tells whether the verification was request for an EMPLOYEE or a CANDIDATE
ipstringIP address of a mobile device where verification was performed in IPv4 format
latitudenumberIP geolocation latitude in decimal degrees
longitudenumberIP geolocation longitude in decimal degrees

Failure Reasons Details:

EnumDescription
FACE_MATCH_FAILEDSelfie does not match the face image from the ID.
ID_VALIDATION_FAILEDID document could not be validated.
DATA_SHARING_CONSENT_DECLINEDUser declined to share data with the customer.
VERIFICATION_EXPIREDVerification request expired before completion.
NAME_DOES_NOT_MATCHName on the ID does not match the name in the employee directory.
EMPLOYEE_DOES_NOT_EXISTNo employee record exists for the provided identifier.
UNDER_REVIEWUser’s documents are under manual review.

*This list is not exhaustive.


Webhook: Data Sharing Consent Revoked

FieldTypeDescription
identity_idstringUnique identifier of the user who deleted the identity or revoked data sharing consent.
user_namestringName of the user as in the directory who performed this action
user_idstringUser id of the user as in the directory who performed this action
workforce_user_typestringThe value tells whether the this user is an EMPLOYEE or a CANDIDATE in your organization
ipstringIP address of a mobile device where the action was performed in IPv4 format
latitudenumberIP geolocation latitude in decimal degrees
longitudenumberIP geolocation longitude in decimal degrees

Error Handling and Retry Policy

Webhooks use an exponential backoff retry policy, making up to 5 attempts to deliver a notification in case of endpoint failures. Ensure your endpoint is ready to handle retries and process duplicate notifications gracefully.

Webhook retries will be triggered in the following scenarios:

  • Timeout when calling the registered endpoint.
  • The returned status code from registered endpoint is not 200 OK along with the application/json header or the status code 204 No content.

The retry policy for webhooks is exponential with an initial interval of 30s, multiplier of 2.5, and max attempts of 5:

Retry attemptDelay (seconds)Delay (minutes)Total (minutes)
1300.50,5
2751.251.75
3187.53.134.88
4468.757.8112.69
51 171.8819.5332.22

This means the maximum time a webhook can take to reach its destination is approximately 32 minutes.

Allowlist webhook source IPs

SAAS (production): IP 18.210.119.234
DEMO (development) IP 34.198.171.165


For further assistance with webhook setup or troubleshooting, contact Support.


What’s Next

Fetch results for your successful verifications