Sign in

Update a credit

documented

Updates an existing credit note.

PUT /credits/{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://{{QUADERNO_ACCOUNT_NAME}}.quadernoapp.com/api/credits/{{$credit_id}}" \
  -X PUT \
  -u "{{QUADERNO_API_KEY}}:x" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"po_number": "{{$po_number}}", "tag_list": "{{$tag_list}}", "payment_details": "{{$payment_details}}", "notes": "{{$notes}}", "attachment": {"data": "{{$attachment_data}}", "filename": "{{$attachment_filename}}", "public": {{$attachment_public}}}}'