POST
/
webhooks
curl --request POST \
  --url https://restapi.sign.plus/v2/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webhook_id": "<string>",
  "event": "ENVELOPE_EXPIRED"
}'
{
  "webhooks": [
    {
      "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

Response

200 - application/json

List of webhooks retrieved successfully

The response is of type object.