Sign in

Create a contact

documented

Creates a new contact used on invoices, credits, and expenses.

POST /contactsCoreno implementation yet0 runs
No 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_name}}.quadernoapp.com/api/contacts" \
  -X POST \
  -u "{{QUADERNO_API_KEY}}:x" \
  -H "Accept: application/json" \
  -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}}" }'