---
title: "Send the envelope under review"
method: POST
path: "/api/review/send"
tags: ["review"]
---

# Send the envelope under review

`POST /api/review/send`

The human approval action (spec §5.3): same contract as `POST /v1/envelopes/{id}/send`, scoped to the token's envelope — validates the stored document, requires ≥1 participant, transitions to `in_progress`, and emits the `atlas/envelope.sent` notification event. Requires a send-capable token (read-only links cannot dispatch).

## Request body

- object
  - `expectedVersion` integer

## Response `200`

The sent envelope graph (status in_progress)

- object
  - `envelope` object, required
    - `id` string, required
    - `organizationId` string, required
    - `teamId` string, nullable, required
    - `templateId` string, nullable, required
    - `templateContentHash` string, nullable, required
    - `status` 'draft' | 'detecting' | 'review' | 'in_progress' | 'completed' | 'declined' | 'voided' | 'expired', required
    - `detectionStatus` 'none' | 'running' | 'succeeded' | 'failed', required
    - `version` integer, required
    - `originalFilename` string, nullable, required
    - `displayName` string, nullable, required
    - `sourceFormat` string, nullable, required
    - `contentHash` string, nullable, required
    - `sizeBytes` number, nullable, required
    - `deliveryMode` string, required
    - `legalFramework` string, nullable, required
    - `consumerDisclosure` boolean, required
    - `expiresAt` string, date-time, nullable, required
    - `scheduledSendAt` string, date-time, nullable, required
    - `reminderPolicy` unknown
    - `sentAt` string, date-time, nullable, required
    - `completedAt` string, date-time, nullable, required
    - `declinedAt` string, date-time, nullable, required
    - `voidedAt` string, date-time, nullable, required
    - `expiredAt` string, date-time, nullable, required
    - `metadata` unknown
    - `senderUserId` string, nullable
    - `senderName` string, nullable
    - `senderEmail` string, nullable
    - `detectedParties` unknown
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `participants` object[], required
    - `id` string, required
    - `envelopeId` string, required
    - `organizationId` string, required
    - `orderIndex` integer, required
    - `name` string, required
    - `email` string, required
    - `company` string, nullable
    - `title` string, nullable
    - `status` 'pending' | 'signed' | 'declined', required
    - `detectedPartyIndex` integer, nullable
    - `consentedAt` string, date-time, nullable, required
    - `signedAt` string, date-time, nullable, required
    - `declinedAt` string, date-time, nullable, required
    - `declineReason` string, nullable, required
    - `lastViewedAt` string, date-time, nullable, required
    - `lastIpAddress` string, nullable, required
    - `lastUserAgent` string, nullable, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `fields` object[], required
    - `id` string, required
    - `envelopeId` string, required
    - `organizationId` string, required
    - `participantId` string, nullable, required
    - `partyIndex` integer, nullable
    - `type` 'signature' | 'initials' | 'date' | 'text' | 'checkbox', required
    - `page` integer, required
    - `x` number, required
    - `y` number, required
    - `width` number, required
    - `height` number, required
    - `label` string, nullable, required
    - `required` boolean, required
    - `source` 'detected' | 'manual' | 'template', required
    - `prefillValue` string, nullable, required
    - `autoSource` 'signed_date' | 'participant_name' | 'participant_email' | 'participant_company' | 'participant_title' | 'sender_org_name' | 'null', nullable, required
    - `proposedAutoSource` 'signed_date' | 'participant_name' | 'participant_email' | 'participant_company' | 'participant_title' | 'sender_org_name' | 'null', nullable, required
    - `value` string, nullable, required
    - `filledAt` string, date-time, nullable, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required

## Other responses

- `401` — Missing or invalid review token
- `402` — Out of credits (insufficient_credits): the organization has no credits left to send. Purchase more to continue.
- `403` — Read-only token cannot send
- `404` — The token's envelope no longer exists
- `409` — Double-send (invalid_transition), terminal state (terminal_state), or stale expectedVersion (conflict)
- `422` — Validation failed: document not uploaded, disallowed stored content type, or zero participants

---

[API](https://skmtc.net/atlaswork/apis/atlas-api.md) · [All operations](https://skmtc.net/atlaswork/apis/atlas-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlaswork/atlas-api/versions/a8a1e7479c90/schema)
