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

# Contacts

> Cloud API endpoints for team-scoped contact management.

All endpoints require authentication. See [Authentication](/cloud/authentication).

## List contacts

```bash theme={null}
GET /api/contacts
```

## Create a contact

```bash theme={null}
POST /api/contacts
```

<ParamField body="name" type="string" required>
  Contact name
</ParamField>

<ParamField body="email" type="string">
  Email address
</ParamField>

<ParamField body="phone" type="string">
  Phone number
</ParamField>

<ParamField body="organization" type="string">
  Organization
</ParamField>

<ParamField body="role" type="string">
  Role or title
</ParamField>

## Get a contact

```bash theme={null}
GET /api/contacts/:slug
```

## Update a contact

```bash theme={null}
PATCH /api/contacts/:slug
```

## Delete a contact

```bash theme={null}
DELETE /api/contacts/:slug
```
