Sign in

Create entry

documented

Create a new entry (note/email) for a party, project or opportunity.

POST /api/v2/entriesEntriesno 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.capsulecrm.com/api/v2/entries" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"entry" : {"party" : {"id" : {{$party_id}}}, "activityType" : {{$activity_type}}, "type" : "{{$entry_type}}", "content" : "{{$content}}", "entryAt" : "{{$entry_at}}", "subject" : "{{$subject}}", "attachments" : [ {"token" : "{{$attachment_token}}"} ]}}'
Create entry · Capsule CRM · OpenIntegrations