Skip to main content
GET
/
sign
/
envelopes
/
{envelopeID}
/
documents
List Documents by Envelope ID
curl --request GET \
  --url https://api.gonitro.dev/sign/envelopes/{envelopeID}/documents \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "name": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "status": "pending",
      "sizeBytes": 123,
      "numPages": 123,
      "failureReason": "<string>",
      "ID": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

envelopeID
string<uuid>
required

A unique UUIDv4 string that identifies the envelope in the Nitro system.

Response

List documents

Fields

items
(Failed · object | Pending · object | Sealed · object | Signed · object | Uploaded · object)[]

An array of documents associated with the envelope.

  • Failed
  • Pending
  • Sealed
  • Signed
  • Uploaded
I