createNote
Add a note to a contact by specifying their ID and note content. Simplify communication tracking and information management within Clay's unified platform.
Instructions
Create a note for a contact. Only use this when the user explicitly asks to create, add, or save a note.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_id | Yes | The ID of the contact to add the note to. | |
content | Yes | The content of the note. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contact_id": {
"description": "The ID of the contact to add the note to.",
"type": "number"
},
"content": {
"description": "The content of the note.",
"type": "string"
}
},
"required": [
"contact_id",
"content"
],
"type": "object"
}