# Retrieve Envelope Template

**GET** `/envelope-templates/{envelopeTemplateId}/`

Retrieve detailed information about a specific Envelope Template by its unique identifier.

This endpoint provides complete details about an Envelope Template, including:
- Template metadata (name, description, creation date)
- Document structure and ordering
- Signer roles and authentication requirements
- Portal configuration (if applicable)

**Use Cases:**
- Get template details before creating a bundle
- Display template information in your application
- Validate template structure and requirements
- Access smart link URL for portal templates

## Request

### Parameters

- `envelopeTemplateId` (path, required, string): The slug that uniquely identifies the Envelope Template

### Responses

- `200`: Successfully retrieved envelope template details
  - Content types: `application/json`
- `401`: Authentication credentials were not provided or are invalid
  - Content types: `application/json`
- `403`: You do not have permission to access this envelope template
  - Content types: `application/json`
- `404`: Envelope template not found
  - Content types: `application/json`
- `429`: Rate limit exceeded
  - Content types: `application/json`
