For the complete documentation index, see llms.txt. This page is also available as Markdown.

Webhooks

The Webhooks endpoints receive and process inbound callbacks from third-party e-signing providers — Adobe Sign and Dokobit/Signicat — as part of the e-contract workflow. These endpoints are called by the external provider, not by integrators directly.

Adobe Sign

Adobe Sign uses a two-step webhook pattern: first a verification GET request to confirm the endpoint, then POST requests for event notifications.

Adobe Webhook Verification

Adobe Webhook Verification

get

This GET method is used by Adobe eSign to verify the webhook configuration.

Header parameters
X-AdobeSign-ClientIdstringRequired

Unique Client ID sent by Adobe eSign for verification.

Responses
200

Adobe Webhook verification response.

application/json

Adobe Webhook Response

xAdobeSignClientIdstringOptional

Echoes back the Client ID received in the request.

get/webhook/callback/adobe
GET /webhook/callback/adobe HTTP/1.1
Host: api.verifone.com
X-AdobeSign-ClientId: text
Accept: */*
{
  "xAdobeSignClientId": "text"
}

Adobe Webhook Event Listener

Adobe Webhook Event Listener

post

This POST method receives webhook event payloads from Adobe eSign.

Header parameters
X-AdobeSign-ClientIdstringRequired

Unique Client ID sent by Adobe eSign for verification.

Body
Other propertiesanyOptional
Responses
200

Adobe Webhook event received successfully.

application/json

Adobe Webhook Response

xAdobeSignClientIdstringOptional

Echoes back the Client ID received in the request.

post/webhook/callback/adobe
POST /webhook/callback/adobe HTTP/1.1
Host: api.verifone.com
X-AdobeSign-ClientId: text
Content-Type: application/json
Accept: */*
Content-Length: 38

{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}
{
  "xAdobeSignClientId": "text"
}

Dokobit

Dokobit Callback

Dokobit Callback

post
Responses
200

Callback Ok

No content

post/webhook/callback/dokobit
POST /webhook/callback/dokobit HTTP/1.1
Host: api.verifone.com
Accept: */*

No content

Signicat

Signicat Webhook

Signicat Webhook

get

This GET method is used by Signicat to notify about signed document events.

Query parameters
merchantAppIdstringRequired

Unique identifier for the merchant.

requestIdstringRequired

Unique identifier for the request.

Responses
200

Webhook processed successfully.

No content

get/webhook/callback/signicat
GET /webhook/callback/signicat?merchantAppId=text&requestId=text HTTP/1.1
Host: api.verifone.com
Accept: */*

No content

Was this helpful?