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

List envelopes

GET
/v2/envelopes/

Requisição

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

Parâmetros Header

Respostas

🟢200OK
application/json
Success
Body

🟠403Proibido
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/envelopes/?page&perPage&status&q' \
--header 'x-account-id;' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Exemplo 1
{
    "envelopes": [
        {
            "id": "string",
            "folderId": "string",
            "title": "string",
            "status": "DRAFT",
            "deadline": "2019-08-24T14:15:22Z",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "isExpired": true
        }
    ],
    "meta": {
        "page": 0,
        "perPage": 0,
        "totalPages": 0,
        "totalCount": 0
    }
}
Modificado em 2025-11-21 19:52:25
Página anterior
Move envelope to folder
Próxima página
Get envelope details
Built with