---
title: "Get Envelope by ID"
method: GET
path: "/sign/envelopes/{envelopeID}"
tags: ["Sign"]
---

# Get Envelope by ID

`GET /sign/envelopes/{envelopeID}`

The **Get Envelope by ID** endpoint retrieves the details of a single envelope using its UUIDv4 identifier.

This endpoint is useful for monitoring the progress of an envelope, retrieving specific envelope information as part of API call chaining, or displaying envelope details within your internal system.

## Path parameters

- `envelopeID` string, uuid, required

## Response `200`

The GET Envelope by ID endpoint returns a JSON object with the envelope's data

- ExtendedEnvelope
  - `ID` string, uuid — A unique UUIDv4 string that identifies the envelope in the Nitro system.
  - `createdAt` string, date-time — UTC timestamp indicating when the envelope was created.
  - `lastModifiedAt` string, date-time — UTC timestamp indicating the last time the envelope was updated. Matches `createdAt` at the time of creation.
  - `name` string — The name of the envelope.
  - `status` 'drafted' | 'sent' | 'processing' | 'sealed' | 'rejected' | 'cancelled' | 'deleted' — The internal status of the envelope. Defaults to drafted on creation.
  - `mode` 'sequential' | 'parallel' — Signing mode for the envelope.
  - `notification` Notification
    - `subject` string, required — The subject line of the notification email.
    - `body` string, required — The body content of the notification email.

## Other responses

- `401` — Unauthorized - Invalid or missing JWT token
- `404` — Envelope not found

---

[API](https://skmtc.net/gonitro/apis/nitro-sign-public-api.md) · [All operations](https://skmtc.net/gonitro/apis/nitro-sign-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gonitro/nitro-sign-public-api/versions/26e3043a365b/schema)
