GET
request that will fetch all the existing envelopes from your Nitro account. Here you can check the OpenAPI spec for this endpoint.
Get Envelopes
Run the following curl command to fetch the envelopes associated with your account. Replace the<token>
placeholder with a valid access token, either generated via code or extracted from your browser’s Application tab in the dev tools.
Request
Response
Below is an example of the response you will get. The response will have the following fields:items
: A list of the envelopes you currently have in your account.
nextPage
: The next page cursor token to request further envelope entries. It doesn’t appear in the response if no more data is available.
Response types
200
Success
Successful request with a list of envelopes
401
Unauthorized
If your access token is expired or invalid you will get a 401
status code for Unauthorized
access. If this happens, renew your access token and try again.
If you continue getting the error after renewing the token, check the validity of the client_secret
key that generated them.
Next steps
Once you complete this section, you are ready to start working on your integration. We recommend following the Create Envelope tutorial in theBuild
section.
It will guide you through how to create a Sign Envelope, add resources to it, and deploy it. This is a common task when implementing an integration with Nitro.