Sign in

Update an expense

documented

Updates an existing expense.

PUT /expenses/{id}Billingno 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_subdomain}}.quadernoapp.com/api/expenses/{{$expense_id}}" \
  -X PUT \
  -u {{$QUADERNO_API_KEY}}:x \
  -H "Accept: application/json; api_version=20241028" \
  -H "Content-Type: application/json" \
  -d '{"issue_date": "{{$issue_date}}", "po_number": "{{$po_number}}", "currency": "{{$currency}}", "tag_list": {{$tag_list}}, "payment_details": "{{$payment_details}}", "notes": "{{$notes}}", "contact": {"id": {{$contact_id}}, "city": "{{$city}}", "country": "{{$country}}", "department": "{{$department}}", "discount": {{$discount}}, "email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "street_line_1": "{{$street_line_1}}", "street_line_2": "{{$street_line_2}}", "postal_code": "{{$postal_code}}", "region": "{{$region}}", "tax_id": "{{$tax_id}}", "language": "{{$language}}", "notes": "{{$contact_notes}}", "tax_status": "{{$tax_status}}"}, "attachment": {{$attachment}}, "country": "{{$billing_country}}", "postal_code": "{{$billing_postal_code}}", "region": "{{$billing_region}}", "street_line_1": "{{$billing_street1}}", "street_line_2": "{{$billing_street2}}"}'"
Update an expense · Quaderno · OpenIntegrations