Create a recurring document
documentedCreates a new recurring document.
POST /recurringBillingno 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_NAME}}.quadernoapp.com/api/recurring" \
-X POST \
-u "{{QUADERNO_API_KEY}}:x" \
-H "Accept: application/json; api_version=20241028" \
-H "Content-Type: application/json" \
-d '{"start_date":"{{$start_date}}","end_date":"{{$end_date}}","frequency":"{{$frequency}}","recurring_period":"{{$recurring_period}}","recurring_frequency":{{$recurring_frequency}},"due_days":"{{$due_days}}","po_number":"{{$po_number}}","currency":"{{$currency}}","tag_list":"{{$tag_list}}","payment_details":"{{$payment_details}}","notes":"{{$notes}}","subject":"{{$subject}}","contact":{"id":{{$contact_id}}},"items":[{"description":"{{$description}}","quantity":{{$quantity}},"subtotal_cents":{{$subtotal_cents}},"discount_cents":{{$discount_cents}},"discount_rate":{{$discount_rate}},"product_code":"{{$product_code}}","region":"{{$region}}"}],"custom_metadata":{{$custom_metadata}}}'"