# List notes Retrieve notes with pagination. Endpoint: GET /leads/api/notes Version: 2.0.0 Security: bearerAuth ## Query parameters: - `limit` (integer) Items per page (default 20). Example: 20 - `offset` (integer) Items to skip (default 0). - `order_field` (string) Sort field (default created_at). Example: "created_at" - `order_type` (string) Sort direction. Enum: "asc", "desc" ## Response 200 fields (application/json): - `data` (array) - `data.uuid` (string) - `data.team_id` (integer) - `data.user_id` (integer) - `data.object` (string) Enum: "lead", "company" - `data.object_uuid` (string) - `data.note` (string) Example: "Follow up after demo next week." - `data.created_at` (string) - `data.updated_at` (string)