Create invoice
documentedCreate a new invoice.
POST /invoices/Invoicesno 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://api.nokotime.com/v2/invoices/" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"invoice_date": "{{$invoice_date}}", "reference": "{{$reference}}", "project_name": "{{$project_name}}", "company_name": "{{$company_name}}", "company_details": "{{$company_details}}", "recipient_details": "{{$recipient_details}}", "description": "{{$description}}", "footer": "{{$footer}}", "locale": "{{$locale}}", "currency_code": "{{$currency_code}}"}'