Bulk update People
documentedCreate, update or delete multiple Person records in a single request; includes creating new records when id=0 and applying filters to target existing records.
PUT /crm/people.apiCRMno 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://secure.workbooks.com/crm/people.api" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "refcode": "{{$refcode}}", "email": "{{$email}}", "phone": "{{$phone}}", "title": "{{$title}}"}'