# Create a note Add a note to a contact or company. Endpoint: POST /leads/api/notes Version: 2.0.0 Security: bearerAuth ## Request fields (application/json): - `object` (string, required) Enum: "lead", "company" - `object_uuid` (string, required) UUID of the contact or company. - `note` (string, required) Example: "Follow up after demo next week." ## Response 201 fields (application/json): - `uuid` (string) - `team_id` (integer) - `user_id` (integer) - `object` (string) Enum: "lead", "company" - `object_uuid` (string) - `note` (string) Example: "Follow up after demo next week." - `created_at` (string) - `updated_at` (string)