create_note
Create a note with Markdown formatting, linked to a primary CRM entity and optionally cross-linked to additional entities.
Instructions
Create a note via POST /v1/notes.
description accepts Markdown — paragraphs, - bullets, **bold**,
*italic*, and [links](url) render correctly in the Recruit CRM UI.
The MCP layer converts to HTML before posting and back to Markdown on read.
related_to is the primary anchor entity. Use associated to cross-link
the note to additional candidates/companies/contacts/jobs/deals.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| related_to | Yes | Reference to a CRM entity for `related_to`-style linkage. | |
| note_type_id | No | ||
| associated | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | ||
| id | Yes | ||
| title | No | ||
| url | No |