Invoicing
Create customers and invoices, collect payment online.
Manage AR invoicing entirely from your backend: create customers, draft and post invoices, and let customers pay through a hosted pay page once you've connected Stripe.
Create a customer
bash
curl -X POST https://app.softsolz.uk/api/v1/services/invoicing/customers \ -H "Authorization: Bearer sk_live_your_key" \ -H "Content-Type: application/json" \ -d '{"display_name":"Acme Inc","email":"billing@acme.com"}'List invoices
bash
curl https://app.softsolz.uk/api/v1/services/invoicing/invoices \ -H "Authorization: Bearer sk_live_your_key"Next
Browse every endpoint in the API Reference, or read the product walkthrough on docs.softsolz.uk.