Update a person
documentedUpdate an existing person in the workspace.
PATCH /v1/people/{personId}Peopleno 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://api.folk.app/v1/people/{{$personId}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "fullName": "{{$fullName}}", "description": "{{$description}}", "birthday": "{{$birthday}}", "jobTitle": "{{$jobTitle}}", "groups": [{"id": "{{$groupId}}"}], "companies": [{"id": "{{$companyId}}"}], "addresses": ["{{$address1}}","{{$address2}}"], "emails": ["{{$email1}}","{{$email2}}"], "phones": ["{{$phone1}}","{{$phone2}}"]}'