action attio_delete_note { label: "Delete a note" description: "Delete a single note by ID.\n\nRequired scopes: `note:read-write`." provider: attio method: DELETE path: "/v2/notes/{note_id}" encoding: json scopes: ["note:read-write"] input: { type: "object" properties: { note_id: { type: "string" format: "uuid" description: "A UUID which identifies the note to delete." } } required: ["note_id"] additionalProperties: false } output: { type: "object" description: "Success" properties: {} } }