Sign in

Create note

documented

Create a Note.

POST /NotesNotesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.{{$pod}}.insightly.com/v3.1/Notes" \
  -X POST \
  -H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"TITLE": "{{$title}}", "BODY": "{{$body}}", "DATE_CREATED_UTC": "{{$date_created_utc}}", "DATE_UPDATED_UTC": "{{$date_updated_utc}}", "OWNER_USER_ID": {{$owner_user_id}}, "VISIBLE_TO": "{{$visible_to}}"}'
Create note · insightly · OpenIntegrations