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

# Notes & Activities

> Log notes, calls, meetings, and custom activities against records.

Notes capture context that doesn't fit in fields — call summaries, meeting takeaways, internal comments. Each note has a type and can be linked to one or more records.

## Tools

| Tool           | Description                                       | Key Params                               |
| -------------- | ------------------------------------------------- | ---------------------------------------- |
| `notes.list`   | List notes, optionally filtered by record or type | `record_ids`, `type`                     |
| `notes.get`    | Get a single note                                 | `note_id`                                |
| `notes.create` | Create a note linked to records                   | `title`, `body`, `type`, `record_ids`    |
| `notes.update` | Update a note's content or links                  | `note_id`, `title`, `body`, `record_ids` |
| `notes.delete` | Delete a note                                     | `note_id`                                |

### Note Types

| Type      | Use case                       |
| --------- | ------------------------------ |
| `note`    | General-purpose notes          |
| `call`    | Call logs and summaries        |
| `meeting` | Meeting notes and action items |
| `email`   | Email summaries or follow-ups  |
| `custom`  | Anything else                  |

## Examples

### Log a call note linked to a contact

```json theme={null}
{
  "tool": "notes.create",
  "params": {
    "title": "Discovery Call — Jane Smith",
    "body": "Discussed current tech stack and pain points. Key issue: manual data entry across 3 systems. Interested in API integrations. Follow up next Tuesday with a demo.",
    "type": "call",
    "record_ids": ["rec_contact_01"]
  }
}
```

### List all notes for a deal

```json theme={null}
{
  "tool": "notes.list",
  "params": {
    "record_ids": ["rec_deal_01"]
  }
}
```

Response:

```json theme={null}
{
  "success": true,
  "data": [
    {
      "id": "note_001",
      "title": "Discovery Call — Jane Smith",
      "body": "Discussed current tech stack and pain points...",
      "type": "call",
      "record_ids": ["rec_contact_01", "rec_deal_01"],
      "created_at": "2026-03-20T14:30:00Z",
      "created_by": "user_abc"
    },
    {
      "id": "note_002",
      "title": "Internal: Pricing discussion",
      "body": "Agreed on 15% discount for annual commitment.",
      "type": "note",
      "record_ids": ["rec_deal_01"],
      "created_at": "2026-03-22T09:00:00Z",
      "created_by": "user_def"
    }
  ]
}
```
