Add note to a contact by email
documentedAdds a note to a contact identified by email.
POST /dev/api/contacts/email/note/addNotesno implementation yet0 runsNo 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://{{$domain}}.agilecrm.com/dev/api/contacts/email/note/add" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'email={{$email}}¬e={"subject":"{{$subject}}","description":"{{$description}}"}' \
-u "{{$email}}:{{AGILECRM_API_KEY}}" \
-v