---
title: "Send Quote"
method: POST
path: "/api/v1/admin/quotes/{quote_id}/send"
tags: ["admin-quotes"]
---

# Send Quote

`POST /api/v1/admin/quotes/{quote_id}/send`

Send a quote to the customer.

Validates the quote is in IN_REVIEW status with at least one fully
priced line item.  Auto-sums line item totals and transitions both
the quote and project to QUOTED status.

## Path parameters

- `quote_id` string, uuid, required

## Response `200`

Successful Response

- QuoteAdminSendResponse — Response after sending a quote to the customer.
  - `id` string, uuid, required
  - `status` string, required
  - `total_amount` string, nullable
  - `tax_amount` string, nullable
  - `tax_auto_calculated` string, nullable
  - `line_items` QuoteLineItemResponse[]
    - `id` string, uuid, required
    - `part_id` string, uuid, required
    - `part_name` string, nullable
    - `description` string, nullable
    - `quantity` integer, required
    - `unit_price` string, nullable
    - `total_price` string, nullable
    - `notes` string, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
