v2

latestOpenAPI 3.1.02026-08-064686150.6 KB
Sign

List Envelopes

The List Envelopes endpoint returns all envelopes associated with an application in an account.

get/sign/envelopes

Query parameters

pageAfterstring

An optional cursor token that instructs the endpoint to return items following the last item from the previous response.

To use this field, include the token value from the nextPage field of the previous response in the pageAfter query parameter to retrieve the next batch of envelopes.

Example:

  curl --location 'https://api.gonitro.dev/sign/envelopes?pageAfter=<next_page_token>'   --header 'Authorization: Bearer <your_jwt_token>'

Note: Cannot be used together with pageBefore.

pageBeforestring

An optional cursor token that instructs the endpoint to return items preceding the last item from the previous response.

To use this field, include the token from the nextPage field of the previous response in the pageBefore query parameter to retrieve envelopes before the cursor position.

Example:

curl --location 'https://api.gonitro.dev/sign/envelopes?pageBefore=<next_page_token>' --header 'Authorization: Bearer <your_jwt_token>'

Note: Cannot be used together with pageAfter.

Response

The List Envelopes endpoint returns all envelopes associated with your account. Envelopes are returned in an items array within the JSON response.

If additional envelopes are available, the initial response will include a nextPage field containing a string token. If there are no more envelopes, this field will be omitted. The token serves as a marker for the last item returned and can be used as the starting point for your next request.

The List Envelopes endpoint uses cursor-based pagination for optimal performance and consistency when handling large numbers of envelopes and frequent data updates.

nextPagestring

A cursor token indicating the position of the last item in the items array, used to retrieve the next page of results.