> ## Documentation Index
> Fetch the complete documentation index at: https://docs.annature.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Send an envelope

Sends a previously created draft envelope to all eligible recipients.

This operation is only valid when the envelope’s status is `draft`. Once sent, the envelope status will transition to `created`, then `sent`.

### Signing order

The recipient `order` property controls how the envelope is routed for signing. If multiple recipients share the same order value, they will receive the envelope at the same time.

Recipients with a higher order will receive the envelope only after all recipients in the previous order group have completed their actions.

This allows you to configure fully sequential, fully parallel, or mixed signing flows.

## Parameters

<ParamField path="id" type="string">
  The unique identifier of the envelope to send.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  POST /v1/envelopes/:id/send
  ```
</RequestExample>

<ResponseExample>
  ```bash theme={null}
  204
  ```
</ResponseExample>
