Add score to contact by email
documentedAdjusts lead score for a contact via email.
POST /dev/api/contacts/add-scoreContactsno 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/add-score" \
-X POST \
-u "{{$login_email}}:{{AGILECRM_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'email={{$contact_email}}&score={{$score}}' \
-v