SuperSign API
  1. Webhooks
SuperSign API
  • Criar Envelope
  • Webhooks
  • Reference
    • Envelopes
      • Create envelope
        POST
      • Void envelope
        POST
      • Edit envelope title
        PATCH
      • Edit envelope deadline
        PATCH
      • Move envelope to folder
        PATCH
      • List envelopes
        GET
      • Get envelope details
        GET
    • Signatários
      • Send signature request reminder
        POST
      • Edit signatory
        PATCH
    • Documentos
      • Get document download url
        GET
    • Pastas
      • Create folder
        POST
    • Webhooks
      • Create webhook endpoint
        POST
      • List webhook endpoints
        GET
      • Delete webhook endpoint
        DELETE
      • Edit webhook endpoint
        PATCH
  1. Webhooks

Edit webhook endpoint

PATCH
/v2/webhooks/{webhookId}

Requisição

Authorization
JWT Bearer
Adicionar o parâmetro
Authorization
a Cabeçalhos
Exemplo:
Authorization: ********************
or
Parâmetros de Caminho

Parâmetros Header

Parâmetros Bodyapplication/json

Examples

Respostas

🟢200OK
application/json
Ok
Body

🟠403Proibido
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/v2/webhooks/' \
--header 'x-account-id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "url": "http://example.com",
    "events": [
        "ENVELOPE_COMPLETED"
    ],
    "isActive": true
}'
Response Response Example
200 - Exemplo 1
{
    "id": "string",
    "accountId": "string",
    "url": "string",
    "events": [
        "ENVELOPE_COMPLETED"
    ],
    "isActive": true,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
}
Modificado em 2025-11-21 19:52:31
Página anterior
Delete webhook endpoint
Built with