Update contact
documentedUpdate a contact
PUT /api2/contacten/{id}Contactsno 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://{{$subdomain}}.recras.nl/api2/contacten/{{$id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"naam": "{{$naam}}", "adres": "{{$adres}}", "postcode": "{{$postcode}}", "plaats": "{{$plaats}}", "landcode": "{{$landcode}}", "provinciecode": "{{$provinciecode}}", "website": "{{$website}}", "btw_nummer": "{{$btw_nummer}}", "bedrijf_id": {{$bedrijf_id}}, "status": "{{$status}}", "contactpersonen": [{"id": {{$contactpersoon_id}}, "hoofdcontact": {{$hoofdcontact}}}] }'