Sign in

Create note

documented

Create a new note related to contacts.

POST /dev/api/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)

Note: Agile CRM's Notes API uses a subdomain URL and HTTP Basic auth with email and API key. Endpoint details are in Agile CRM's REST API docs, including the /dev/api/notes POST example. Source references: Agile CRM REST API docs and repository examples. ([github.com](https://github.com/agilecrm/rest-api?utm_source=openai))

npx -y keychains@latest curl "https://{{$AGILECRM_DOMAIN}}.agilecrm.com/dev/api/notes/" \
  -X POST \
  -u "{{$email}}:{{AGILECRM_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"subject": "{{$subject}}", "description": "{{$description}}", "contact_ids": {{$contact_ids}} }'
Create note · Agile CRM · OpenIntegrations