action attio_get_note { label: "Get a note" description: "Get a single note by ID.\n\nRequired scopes: `note:read`, `object_configuration:read`, `record_permission:read`." provider: attio method: GET path: "/v2/notes/{note_id}" encoding: json scopes: ["note:read", "object_configuration:read", "record_permission:read"] input: { type: "object" properties: { note_id: { type: "string" format: "uuid" description: "A UUID which identifies the note." } } required: ["note_id"] additionalProperties: false } output: { type: "object" description: "Success" required: ["data"] properties: { data: { type: "object" required: ["content_markdown", "content_plaintext", "created_at", "created_by_actor", "id", "meeting_id", "parent_object", "parent_record_id", "tags", "title"] properties: { content_markdown: { type: "string" description: "The markdown representation of the note content. Supports a subset of markdown features including:\n- Headings (levels 1-3 only with `#`, `##`, `###`)\n- Unordered lists (`-`, `*`, `+`)\n- Ordered lists (`1.`, `2.`, etc.)\n- Text styling: `**bold**`, `*italic*`, `~~strikethrough~~`, `==highlighted==`\n- Links: `[link text](https://example.com)`\n\nNote that note images are not returned as part of the markdown API representation." } content_plaintext: { type: "string" description: "The plaintext representation of the note content. The line feed character `\\n` represents new lines within the note content." } created_at: { type: "string" description: "When the note was created." } created_by_actor: { type: "object" description: "The actor that created this note." properties: { id: { type: "string" description: "An ID to identify the actor." } type: { type: "string" description: "The type of actor. [Read more information on actor types here](/docs/actors)." enum: ["api-token", "workspace-member", "system", "app"] } } } id: { type: "object" required: ["note_id", "workspace_id"] properties: { note_id: { type: "string" format: "uuid" description: "The ID of the note." } workspace_id: { type: "string" format: "uuid" description: "The ID of the workspace the note belongs to." } } } meeting_id: { type: ["string", "null"] format: "uuid" description: "The ID of the meeting associated with this note, or null if no meeting is associated." } parent_object: { type: "string" description: "The slug or ID of the parent object the note belongs to." } parent_record_id: { type: "string" format: "uuid" description: "The ID of the parent record the note belongs to." } tags: { type: "array" description: "An array of records or workspace members that are @-tagged in the note content." items: { type: "object" } } title: { type: "string" description: "The note title. The title is plaintext only and has no formatting." } } } } } }