Update a contact
documentedUpdates an existing contact.
PUT /contacts/{id}Coreno 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://{{$account_url}}.quadernoapp.com/api/contacts/{{$id}}" \
-X PUT \
-u {{QUADERNO_API_KEY}}:x \
-H "Accept: application/json; api_version=20241028" \
-H "Content-Type: application/json" \
-d '{"city": "{{$city}}", "contact_person": "{{$contact_person}}", "country": "{{$country}}", "department": "{{$department}}", "discount": {{$discount}}, "email": "{{$email}}", "first_name": "{{$first_name}}", "kind": "{{$kind}}", "language": "{{$language}}", "last_name": "{{$last_name}}", "notes": "{{$notes}}", "phone_1": "{{$phone_1}}", "postal_code": "{{$postal_code}}", "processor": "{{$processor}}", "processor_id": "{{$processor_id}}", "region": "{{$region}}", "street_line_1": "{{$street_line_1}}", "street_line_2": "{{$street_line_2}}", "tax_id": "{{$tax_id}}", "tax_status": "{{$tax_status}}", "web": "{{$web}}"}'