---
title: "Create Lead"
method: POST
path: "/api/admin/leads"
tags: ["admin-leads"]
---

# Create Lead

`POST /api/admin/leads`

## Request body

- CreateLeadRequest
  - `workspace_id` string, required
  - `use_case_id` string, nullable
  - `agent_id` string, nullable
  - `name` string, required
  - `email` string, nullable
  - `phone` string, nullable
  - `description` string, nullable
  - `custom_fields` object, nullable
  - `source` string, nullable
  - `status` string, nullable
  - `external_source` string, nullable
  - `external_ref` string, nullable

## Response `200`

Successful Response

- LeadListItem
  - `id` string, required
  - `name` string, required
  - `email` string, nullable
  - `phone` string, nullable
  - `workspace_id` string, required
  - `workspace_name` string, required
  - `use_case_id` string, nullable
  - `use_case_name` string, nullable
  - `use_case_type` string, nullable
  - `agent_id` string, nullable
  - `agent_name` string, nullable
  - `source` string, nullable
  - `status` string, nullable
  - `description` string, nullable
  - `external_source` string, nullable
  - `external_ref` string, nullable
  - `synced_to_sheet` boolean
  - `captured_from_chat` boolean
  - `deleted_at` string, date-time, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/outcallerai/apis/fastapi.md) · [All operations](https://skmtc.net/outcallerai/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/outcallerai/fastapi/revisions/a57f684e7966/schema)
