Update person
documentedUpdate a person (v2).
PATCH /api/v2/persons/{id}Personsno 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://{{company_domain}}.pipedrive.com/api/v2/persons/{{$id}}" \
-X PATCH \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"name": "{{$name}}", "org_id": {{$org_id}}, "owner_id": {{$owner_id}}, "visible_to": {{$visible_to}}}'