Update star value
documentedUpdate the star value for a contact.
PUT /dev/api/contacts/edit/add-starContactsno 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/edit/add-star" \
-X PUT \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Basic {{AGILECRM_SECRET}}" \
-d '{"id": "{{$contact_id}}", "star_value": {{$star_value}}}' \
-v