SuperSign API
  1. Envelopes
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. Envelopes

Create envelope

POST
/v2/envelopes/

Requisição

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

Parâmetros Bodyapplication/json

Examples

Respostas

🟢201Criado
application/json
Created
Body

🟠400Solicitação Incorreta
🟠403Proibido
🟠404Registro Não Encontrado
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v2/envelopes/' \
--header 'x-account-id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "folderId": "string",
    "title": "string",
    "deadline": "2019-08-24T14:15:22Z",
    "message": "string",
    "documents": [
        {
            "id": "string",
            "fileName": "string",
            "contentType": "string"
        }
    ],
    "signatories": [
        {
            "id": "string",
            "name": "string",
            "email": "user@example.com",
            "qualification": "string",
            "signingOrder": 0,
            "authMethod": "EMAIL"
        }
    ],
    "observers": [
        {
            "email": "user@example.com",
            "notifyOnSent": false,
            "notifyOnCompletion": true
        }
    ],
    "fields": [
        {
            "type": "SIGNATURE",
            "documentId": "string",
            "signatoryId": "string",
            "pageNumber": 1,
            "position": {
                "x": 0,
                "y": 0,
                "width": 0,
                "height": 0
            },
            "properties": {}
        }
    ]
}'
Response Response Example
201 - Exemplo 1
{
    "envelopeId": "string",
    "uploadDetails": [
        {
            "documentId": "string",
            "fileName": "string",
            "uploadUrl": "string"
        }
    ]
}
Modificado em 2025-12-01 11:45:25
Página anterior
Webhooks
Próxima página
Void envelope
Built with