GET
/
envelope
/
{envelope_id}
/
documents
curl --request GET \
  --url https://restapi.sign.plus/v2/envelope/{envelope_id}/documents \
  --header 'Authorization: Bearer <token>'
{
  "documents": [
    {
      "id": "<string>",
      "name": "<string>",
      "filename": "<string>",
      "page_count": 123,
      "pages": [
        {
          "width": 123,
          "height": 123
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

envelope_id
string
required

Response

200 - application/json
Documents of envelope retrieved successfully
documents
object[]