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

# Overview

> Manage people in your Allo CRM

The People API lets you create, read, update, and search your team's contacts.

## Scopes

| Scope       | Access                   |
| ----------- | ------------------------ |
| `CRM_READ`  | Get and search people    |
| `CRM_WRITE` | Create and update people |

## Associations

* **Person → Company**: A person can belong to one company (`company_id`)

## Search

People support search via `POST /v2/api/crm/people/search` with named filters and full-text search.

Available filters: `name`, `last_name`, `job_title`, `website`, `company`, `phone_number`, `email`, `deal_status`.

## Endpoints

<CardGroup cols={1}>
  <Card title="Get person" href="/en/v2/api-reference/crm/get-person">Get a person by ID</Card>
  <Card title="Create person" href="/en/v2/api-reference/crm/create-person">Create a new person</Card>
  <Card title="Update person" href="/en/v2/api-reference/crm/update-person">Update a person</Card>
  <Card title="Search people" href="/en/v2/api-reference/crm/search-people">Search people with filters</Card>
</CardGroup>
