POST
/
webhook
curl --request POST \
  --url https://restapi.sign.plus/v2/webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "event": "ENVELOPE_EXPIRED",
  "target": "<string>"
}'
{
  "id": "<string>",
  "event": "ENVELOPE_EXPIRED",
  "target": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
event
enum<string>
required

Event of the webhook

Available options:
ENVELOPE_EXPIRED,
ENVELOPE_DECLINED,
ENVELOPE_VOIDED,
ENVELOPE_COMPLETED,
ENVELOPE_AUDIT_TRAIL
target
string
required

URL of the webhook target

Response

200 - application/json
Webhook event received successfully
id
string

Unique identifier of the webhook

event
enum<string>

Event of the webhook

Available options:
ENVELOPE_EXPIRED,
ENVELOPE_DECLINED,
ENVELOPE_VOIDED,
ENVELOPE_COMPLETED,
ENVELOPE_AUDIT_TRAIL
target
string

Target URL of the webhook