Apple Notes

Action note.text

action.apple_notes

Create, search, or append to notes in Apple Notes using AppleScript automation. Choose an operation and configure the corresponding fields. Notes are organized into folders and can be targeted by name or search query.

Ideal for workflows that capture meeting notes, save AI summaries, or build knowledge bases from automated data collection.

Ports

DirectionNameData TypeDescription
InputInputAnyIncoming payload for interpolation
OutputOutputAnyPayload with note metadata

Configuration

FieldTypeDefaultDescription
operationDropdowncreateOperation: Create Note, Append to Note, or Search Notes
Create Note Fields
titleTextNote title. Supports {{var}}. Visible when operation = create.
bodyText AreaNote body content. Visible when operation = create.
folderTextTarget folder name (e.g., "Notes"). Visible when operation = create.
Append to Note Fields
noteNameTextName of the note to append to. Visible when operation = append.
contentText AreaContent to append. Visible when operation = append.
Search Notes Fields
queryTextSearch query string. Visible when operation = search.
searchFolderTextLimit search to a specific folder. Visible when operation = search.
limitNumber5Maximum number of results to return. Visible when operation = search.

Output Variables

VariableTypeDescription
noteTitleStringTitle of the created/found note
noteBodyStringBody content of the note
noteFolderStringFolder containing the note
noteIDStringApple Notes identifier
resultsJSONArray of search results (search operation)
countNumberNumber of results found (search operation)

Example

Create a note from incoming webhook data: