GET /v1/envelopes
[{
  "id": "7e8f68e4c6df9395cd7ff48d69d7e2c1",
  "name": "Non disclosure agreement",
  "message": "Lorem ipsum dolor sit amet.",
  "status": "completed",
  "shared": false,
  "created": "2019-12-17T05:30:00Z",
  "sent": "2019-12-17T05:30:00Z",
  "voided": null,
  "declined": null,
  "completed": "2019-12-17T05:30:00Z",
  "account_id": "c64ce66b70b21c03bfd5dfa0ab14b730",
  "group_id": "a5a885caee6286a54ad7bbd4ab5400e9",
  "recipients": [{
    "id": "255e591c2c9fe1bc99be1ec03075b402",
    "name": "Ted Annature",
    "email": "ted@annature.com.au",
    "mobile": "+61422000000",
    "type": "signer",
    "status": "completed",
    "message": "Lorem ipsum dolor sit amet.",
    "password": true,
    "muted": false,
    "order": 1,
    "declined_reason": null,
    "created": "2019-12-17T05:30:00Z",
    "sent": "2019-12-17T05:30:00Z",
    "declined": null,
    "completed": "2019-12-17T05:30:00Z",
    "redirects": {
      "session_completed": "https://..",
      "session_declined": "https://.."
    }
  }]
}]

Returns a list of envelopes associated with your organisation.

Envelopes are sorted in descending order by their creation date, with the most recently created appearing first.

By default, envelopes with a status of draft will not be returned unless the status parameter is explicitly provided.

Date parameters must be supplied in ISO 8601 format. Dates submitted in an invalid format will be silently ignored.

The response is limited to a maximum of 1,000 results.

Parameters

name
optional

Exact-match filter based on the envelope’s name property.

status
optional

Exact-match filter based on the envelope’s status.

Valid values include draft, created, sent, completed, and voided.

recipient
optional

Exact-match filter based on a recipient’s name or email address.

When used, all recipients of the matching envelopes will still be returned in the response.

created_before
optional

Return envelopes created before the specified ISO 8601 timestamp.

created_after
optional

Return envelopes created after the specified ISO 8601 timestamp.

completed_before
optional

Return envelopes completed before the specified ISO 8601 timestamp.

completed_after
optional

Return envelopes completed after the specified ISO 8601 timestamp.

GET /v1/envelopes
[{
  "id": "7e8f68e4c6df9395cd7ff48d69d7e2c1",
  "name": "Non disclosure agreement",
  "message": "Lorem ipsum dolor sit amet.",
  "status": "completed",
  "shared": false,
  "created": "2019-12-17T05:30:00Z",
  "sent": "2019-12-17T05:30:00Z",
  "voided": null,
  "declined": null,
  "completed": "2019-12-17T05:30:00Z",
  "account_id": "c64ce66b70b21c03bfd5dfa0ab14b730",
  "group_id": "a5a885caee6286a54ad7bbd4ab5400e9",
  "recipients": [{
    "id": "255e591c2c9fe1bc99be1ec03075b402",
    "name": "Ted Annature",
    "email": "ted@annature.com.au",
    "mobile": "+61422000000",
    "type": "signer",
    "status": "completed",
    "message": "Lorem ipsum dolor sit amet.",
    "password": true,
    "muted": false,
    "order": 1,
    "declined_reason": null,
    "created": "2019-12-17T05:30:00Z",
    "sent": "2019-12-17T05:30:00Z",
    "declined": null,
    "completed": "2019-12-17T05:30:00Z",
    "redirects": {
      "session_completed": "https://..",
      "session_declined": "https://.."
    }
  }]
}]