Create Note
create_noteAdds a note to Recruit CRM for a candidate, company, contact, job, or deal, specifying type, description, and creator.
Instructions
Creates one Recruit CRM note. Requires note_type_id, description, related_to, related_to_type, and created_by user id. Resolve note type IDs with list_note_types and user IDs with list_users. Description supports basic HTML/rich text. Returns a compact note summary.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| created_by | Yes | Recruit CRM user id creating the note. | |
| related_to | Yes | Associated entity slug. | |
| updated_by | No | Recruit CRM user id updating the note. | |
| description | Yes | Note description. Supports basic HTML/rich text and is sent to Recruit CRM as-is. | |
| note_type_id | Yes | Recruit CRM note type id. | |
| associated_jobs | No | Additional associated job slugs. Max 25. Sent as a comma-separated API field. | |
| related_to_type | Yes | Associated entity type. | |
| associated_deals | No | Additional associated deal slugs. Max 25. Sent as a comma-separated API field. | |
| associated_contacts | No | Additional associated contact slugs. Max 25. Sent as a comma-separated API field. | |
| associated_companies | No | Additional associated company slugs. Max 25. Sent as a comma-separated API field. | |
| associated_candidates | No | Additional associated candidate slugs. Max 25. Sent as a comma-separated API field. | |
| collaborator_team_ids | No | Collaborator team IDs. Max 25. Sent as a comma-separated API field. | |
| collaborator_user_ids | No | Collaborator user IDs. Max 25. Sent as a comma-separated API field. | |
| enable_auto_populate_teams | No | When true, Recruit CRM auto-populates teams for the created_by user/account owner unless collaborator_team_ids is provided. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note_id | Yes | ||
| note_type | Yes | ||
| created_by | Yes | ||
| created_on | Yes | ||
| related_to | Yes | ||
| updated_by | Yes | ||
| updated_on | Yes | ||
| description | Yes | ||
| associated_jobs | Yes | ||
| related_to_type | Yes | ||
| associated_deals | Yes | ||
| collaborator_teams | Yes | ||
| collaborator_users | Yes | ||
| associated_contacts | Yes | ||
| related_to_view_url | Yes | ||
| associated_companies | Yes | ||
| associated_candidates | Yes |