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

# Add People To List

> Bulk-add static people membership to a people list

Ids are LinkedIn ids — the same id an opportunity carries for its prospect,
not a person's profile id. Adding someone already on the list is a no-op, so
this is safe to retry over a selection that partly overlaps.

## Path Parameters

<ParamField path="listId" type="string" required />

## Body

<ParamField body="person_ids" type="string[]" required>
  Prospect LinkedIn ids.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.clustr-ai.com/api/public/lists/l1a2b3c4-.../people" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"person_ids": ["jane-smith", "john-doe"]}'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "message": "People added to list", "added": 2 }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "list not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
