---
title: "Get Customer Draft"
method: GET
path: "/api/v1/customers/{customer_id}/draft"
tags: ["customers"]
---

# Get Customer Draft

`GET /api/v1/customers/{customer_id}/draft`

The draft waiting for this person. ``channel`` narrows it to one channel.

A profile holds at most one pending draft per channel, so the email view and
the push view have to ask for their own; unfiltered (the historical default)
still returns whichever is newest.

``include_agent_drafts=false`` leaves an agent's queued draft where it
belongs — in that agent's review queue, behind that agent's own gates.

## Path parameters

- `customer_id` string, uuid, required

## Query parameters

- `channel` string, nullable
- `include_agent_drafts` boolean

## Headers

- `authorization` string, nullable — Bearer <token>

## Response `200`

Successful Response

- EnvelopeUnionDraftResponseNoneType
  - `data` DraftResponse, required
    - `id` string, uuid, required
    - `workspace_id` string, uuid, required
    - `customer_id` string, uuid, required
    - `channel` string, nullable
    - `subject` string, nullable
    - `body` string, required
    - `body_format` string
    - `status` string, required
    - `content_version` integer
    - `generation_context` object, nullable
    - `generated_at` string, date-time, required
    - `sent_at` string, date-time, nullable
    - `reply_received` boolean
    - `reply_at` string, date-time, nullable
    - `customer_name` string, nullable
    - `customer_email` string, nullable
    - `priority_tier` string, nullable
    - `priority_score` number, nullable
    - `opened` boolean, nullable
    - `first_opened_at` string, date-time, nullable
    - `unsubscribed` boolean, nullable
    - `unsubscribed_at` string, date-time, nullable
    - `returned` boolean, nullable
    - `returned_at` string, date-time, nullable
  - `meta` Meta
    - `request_id` string
    - `timestamp` string, date-time
    - `total` integer, nullable
    - `truncated` boolean, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/minro/apis/minro-cs-platform.md) · [All operations](https://skmtc.dev/minro/apis/minro-cs-platform/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/minro/minro-cs-platform/revisions/eb854265cf29/schema)
