Complete reference for the Mocha QuickBill API: every endpoint with its request fields, example bodies, response payloads and status codes.
Base URL, authentication and the endpoint index.
Every endpoint takes a JSON body and returns JSON. Authenticate with the X-Tenant and API Key headers on every request — see Authentication for the details.
Every path on this page is relative to:
https://services.ap.mochatechnologies.com/quickbill/api/v1| Endpoint | What it does |
|---|---|
| POST /products | Create a product or service that invoice line items can reference. |
| GET /products | List your products, a page at a time. |
| GET /products/:id | Read a single product back by its id. |
| POST /customers | Create the customer an invoice is issued to, with its addresses. |
| GET /customers | List your customers, a page at a time. |
| GET /customers/:id | Read a single customer back by its id. |
| GET /invoices/get-invoice-number | Take the next invoice number, before you create the invoice. |
| POST /invoices | Bill a customer for one or more products. |
| GET /invoices | List your invoices, a page at a time. |
| GET /invoices/:id | Read a single invoice back in full, with its addresses and payments. |
| GET /payments/get-next-payment-number | Take the next payment reference, before you record the payment. |
| POST /payments | Record a payment against one or more of a customer's invoices. |
| GET /payments | List recorded payments, a page at a time. |
| GET /payments/:id | Read one payment back, with what it was applied to. |
| POST /pricing-components | Create a fixed or an adjustment pricing component. |
| PUT /pricing-components/:id | Replace a pricing component with how it should end up. |
| GET /pricing-components | List every pricing component at once, with no pagination. |
| GET /pricing-components/:id | Read a single pricing component back by its id. |
| POST /pricing-plans | Build a pricing plan out of one or more pricing components. |
| PUT /pricing-plans/:id | Replace a pricing plan with how it should end up. |
| GET /pricing-plans | List every pricing plan at once, with no pagination. |
| GET /pricing-plans/:id | Read a single pricing plan back by its id. |
| POST /products/:id/pricing-plans | Set which pricing plans a product is on. |
| GET /products/:id/pricing-plans | Read back which pricing plans a product is on. |
X-Tenant or API Key is rejected before the request reaches any of the endpoints below, so the status tables on this page do not repeat it. Handle it once in the layer that adds your headers — see Getting Started → Authentication.Add a product or service your invoices can bill against.
Creates a product or service on your account. Once created it can be referenced on any invoice line item. The response returns the full product record, including the fields the server filled in for you.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | What kind of product this is. Use service — that is the only value supported for now. |
name | string | Required | Display name shown on invoices and in your catalog. |
sku | string | Optional | Your own identifier for the product. Optional — omit it and the field comes back null. |
description | string | Optional | Longer text about the product, for your own reference and on the invoice line. |
tags | array | Optional | Labels you can group and filter products by. Each entry is an object carrying a label and nothing else — send [{ "label": "Earphone" }]. |
revenue_account | integer | Required | Id of the account that sales of this product post to. |
expense_account | integer | Required | Id of the account that the cost of this product posts to. |
inventory_account | integer | Required | Id of the account that holds this product's inventory value. |
revenue_account, expense_account and inventory_account must all be supplied — an invoice cannot be created against a product that is missing them. The endpoint for listing the available account ids is not documented yet.{
"type": "service",
"name": "Wireless Earbuds",
"sku": "EAR-001",
"description": "True wireless earbuds with noise isolation.",
"tags": [
{
"label": "Earphone"
}
],
"revenue_account": 17,
"expense_account": 9,
"inventory_account": 10
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/products' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"type": "service",
"name": "Wireless Earbuds",
"sku": "EAR-001",
"description": "True wireless earbuds with noise isolation.",
"tags": [
{ "label": "Earphone" }
],
"revenue_account": 17,
"expense_account": 9,
"inventory_account": 10
}'The response echoes what you sent, plus two fields the server adds: the generated id — which is what you reference on invoice line items — and is_active, which starts as true. The three account ids you sent are not echoed back.
{
"id": 3210,
"name": "Wireless Earbuds",
"sku": "EAR-001",
"type": "service",
"description": "True wireless earbuds with noise isolation.",
"tags": [{ "label": "Earphone", "value": "Earphone" }],
"is_active": true
}id is handed to you. Save it against your own record — you need it for every invoice line that bills this product.{ "label": "Earphone" }; the response returns { "label": "Earphone", "value": "Earphone" }. The server fills value in from the label — do not send it yourself, and do not be surprised when the response does not match your request field for field.| Status | Meaning |
|---|---|
| 200 | Product created. The record is returned. |
| 422 | Validation failed — a required field is missing or a value is not acceptable. |
| 403 | You do not have permission for this product. |
| 500 | Unexpected error. |
Every error on the product endpoints comes back in the same shape — a single message. Show it, log it, and branch on the status code rather than on the text.
{
"message": "Product not found"
}Validation errors add one key. message holds the first problem, and errors maps each rejected field to a list of messages — which is what you want if you are highlighting fields in a form:
{
"message": "The name field is required.",
"errors": {
"name": ["The name field is required."]
}
}message is only the first failure. If two fields are invalid, the second one appears in errors and nowhere else — so a client that shows only message will have the user fix one field, resubmit, and hit the next error one at a time. Also note each value in errors is an array, since a single field can fail more than one rule.500 may be temporary — your request could be fine, so retrying after a short backoff is reasonable. 422, 403 and 404 will fail identically every time; retrying them just wastes calls.X-Tenant or API Key is rejected before the request reaches the product — so it is not listed above. Handle it centrally, as covered in Getting Started → Authentication.Read your products back, a page at a time.
Returns your products in pages, newest first. Use this to populate a product picker in your own UI, or to find the id you need for an invoice line item.
| Field | Type | Required | Description |
|---|---|---|---|
page | integer | Required | Which page to return, starting at 1. |
page_length | integer | Required | How many products per page. Comes back as per_page in the response. |
search | string | Required | A JSON object, sent as a string, holding your filters. Send {} for no filter — that is what the example does. |
{} has been confirmed here. List Contacts takes the same search parameter and does accept a key inside it, so this one probably accepts keys too — but which ones has not been supplied. Filter on your side for now.curl -G \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/products' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
--data-urlencode 'page=1' \
--data-urlencode 'page_length=10' \
--data-urlencode 'search={}'Two keys: the products in data, and the paging in meta. Each entry is the same seven-field record that Create a Product and Get a Product return, so one parser covers all three.
| Field | What it is |
|---|---|
total | How many products exist in total, across every page — 6 in the example. |
current_page | The page you are on, echoing the page you asked for. |
last_page | The highest page number available. Stop paging when current_page reaches it. |
per_page | Page size in effect, echoing page_length. |
from / to | Position of the first and last item on this page within the full set — 1 and 6 here. |
meta. The contact, invoice and payment lists put the same values at the top level next to data, and add links and URL fields that are not here. So response.meta.last_page on this endpoint is response.last_page on the others — write the paging helper to take the envelope it is given rather than assuming one shape.next_page_url, links or path — so none of the internal-host and malformed-query problems those carry apply here. Page with current_page against last_page.| Field | What it tells you |
|---|---|
type | service on every product, since that is the only type supported for now. |
description / tags | What you sent when you created the product. tags is an empty array when you did not send any. |
is_active | Whether the product is still in use. Every product on the example page is active. |
sku | Your own identifier, or null if you did not send one. |
revenue_account, expense_account and inventory_account are required when you create a product, but they do not come back on any read — not here and not on GET /products/:id. Keep your own copy if you need them.{
"data": [
{
"id": 6,
"name": "Premium Monthly",
"sku": "PRECNBRHWH",
"type": "service",
"description": "A Premium Monthly",
"tags": [],
"is_active": true
}
],
"meta": {
"current_page": 1,
"per_page": 10,
"last_page": 1,
"total": 6,
"from": 1,
"to": 6
}
}| Status | Meaning |
|---|---|
| 200 | The page is returned, even when data is empty. |
| 403 | You do not have permission for this product. |
| 500 | Unexpected error. |
message, the same as everywhere else on the product endpoints — see Errors under Create a Product. An empty page is a 200 with an empty data array, not an error.Read a single product back by its id.
Returns one product. Use it to refresh a product you already hold the id for — after creating it, or after picking it out of List Products.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The product's id, as returned by POST /products or found in the list. The example reads product 3210 — the one created above. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/products/3210' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"The product on its own — no wrapper, no paging fields — and the same seven fields POST /products returns.
{
"id": 3210,
"name": "Wireless Earbuds",
"sku": "EAR-001",
"type": "service",
"description": "True wireless earbuds with noise isolation.",
"tags": [{ "label": "Earphone", "value": "Earphone" }],
"is_active": true
}data or product key. Read the fields straight off the response body.POST /products and from each entry in GET /products. One product model in your code covers all three calls.| Status | Meaning |
|---|---|
| 200 | The product is returned. |
| 404 | No product with that id. |
| 403 | The product exists but you do not have permission to see it. |
| 500 | Unexpected error. |
{
"message": "Product not found"
}404 is “no such product”; 403 is “it exists, but not for you”. Treating both as “missing” will quietly hide a permissions problem from whoever is trying to use your integration. The full error shapes are under Errors on Create a Product.Add the person or business your invoices are issued to.
Creates a customer along with its billing and shipping addresses in the same call. The body has two parts: contact_infos for the person or business, and addresses for where they are billed and shipped to.
email always, plus a name — first_name in contact_infos, or company_name in additional_infos. Send company_name and first_name stops being required. Everything else, including the whole addresses array, is optional.Whatever form you build on top of this endpoint has two independent decisions in it, and every combination is valid:
| Choice | Option A | Option B |
|---|---|---|
| Company name | Left out — a person. first_name is then required. | Sent in additional_infos — a business. first_name becomes optional, and if you do send it, it is the contact person at that business. |
| Address | Typed by hand — is_google_address: false, and you send only the plain fields. | Picked from Google Places — is_google_address: true, and you pass the Places fields through as well. |
company_name — so an accidental empty string there turns a person into a nameless business. Omit the key rather than sending ""."type": "customer" on the list and read-by-id responses further down this page — the server sets it there. Leave it out of anything you send.| Field | Type | Required | Description |
|---|---|---|---|
email | string | Required | Where invoices are emailed. Required for both a person and a company. |
first_name | string | Required | Given name of the person. Required only when you are not sending company_name — on a business it is optional, and names the contact person rather than the business itself. |
last_name | string | Optional | Family name of the person. |
title | string | Optional | Salutation such as Mr or Ms. |
phone_number | string | Optional | Contact number including country code, digits only — for example 919685745259. |
type flag to set. Send company_name and you get a company; leave it out and you get a person. So an accidental empty company_name on a person record is a real risk — omit the key rather than sending "".A separate object, and the only place the business name goes. Leave the whole object out when you are creating a person.
| Field | Type | Required | Description |
|---|---|---|---|
company_name | string | Optional | The business name. Sending it makes the record a business and releases you from sending first_name. It is also what display_name is derived from. |
additional_infos; every read response returns it as add_infos, and as an array rather than an object. Do not reuse one field name for both directions.add_infos also carrying gst_treatment, term_id, is_tax_exempt, customer_type, website and more. Whether this endpoint accepts them on creation has not been supplied, so only company_name is documented as settable. The rest come back with defaults.An array. Send one entry per address, each tagged with its type. Billing and shipping can be the same address — repeat the same values under both types, as in the first example below.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | billing or shipping. |
formatted_address | string | Required | The whole address as a single line, exactly as it should appear on the invoice. |
country | string | Required | Two-letter ISO country code — for example IN. |
administrative_area_level_1 | string | Optional | State or province code — for example MH, HR. |
locality | string | Optional | City or town. |
postal_code | string | Optional | Postal or PIN code. |
is_google_address | boolean | Required | true if the address came from Google Places, false if it was typed in by hand. This decides which of the fields below apply. |
is_primary | boolean | Optional | Marks this as the default address for its type. |
Both examples below type the address in by hand, so they set is_google_address: false and stop at the fields above. When the address came out of a Google Places lookup instead, set it to true and add these — pass them through from the Places result unchanged:
| Field | Type | Required | Description |
|---|---|---|---|
google_place_id | string | Optional | The Places identifier for the selected address. |
route | string | Optional | Street name component. |
street_number | string | Optional | Building or house number. Send an empty string when Google did not return one. |
administrative_area_level_2 | string | Optional | District or division — for example Pune Division. |
latitude | number | Optional | Latitude of the place. |
longitude | number | Optional | Longitude of the place. |
{
"type": "billing",
"formatted_address": "A-5, Block A, Sector 26A, Gurugram, Haryana 122002, India",
"country": "IN",
"administrative_area_level_1": "HR",
"administrative_area_level_2": "Gurgaon Division",
"locality": "Gurugram",
"postal_code": "122002",
"route": "A-5",
"street_number": "",
"latitude": 28.4728561,
"longitude": 77.0995667,
"google_place_id": "EjlBLTUsIEJsb2NrIEEsIFNlY3RvciAyNkEsIEd1cnVncmFtLCBIYXJ5YW5hIDEyMjAwMiwgSW5kaWEiLi4...",
"is_google_address": true,
"is_primary": true
}"" for street_number, the other used null for street_number, route and postal_code. Both appear to be accepted. Pick one and use it everywhere rather than mixing, and expect either to read back as null.No additional_infos, so this is a person and first_name is required. Billing and shipping are the same address, so the same values appear twice with different type values.
{
"contact_infos": {
"title": "Ms",
"first_name": "Priya",
"last_name": "Sharma",
"email": "priya.sharma@example.com",
"phone_number": "919685745259"
},
"addresses": [
{
"type": "billing",
"formatted_address": "21 MG Road",
"country": "IN",
"administrative_area_level_1": "MH",
"locality": "Mumbai",
"postal_code": "425360",
"is_google_address": false,
"is_primary": true
},
{
"type": "shipping",
"formatted_address": "21 MG Road",
"country": "IN",
"administrative_area_level_1": "MH",
"locality": "Mumbai",
"postal_code": "425360",
"is_google_address": false,
"is_primary": true
}
]
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/customers' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"contact_infos": {
"title": "Ms",
"first_name": "Priya",
"last_name": "Sharma",
"email": "priya.sharma@example.com",
"phone_number": "919685745259"
},
"addresses": [
{
"type": "billing",
"formatted_address": "21 MG Road",
"country": "IN",
"administrative_area_level_1": "MH",
"locality": "Mumbai",
"postal_code": "425360",
"is_google_address": false,
"is_primary": true
},
{
"type": "shipping",
"formatted_address": "21 MG Road",
"country": "IN",
"administrative_area_level_1": "MH",
"locality": "Mumbai",
"postal_code": "425360",
"is_google_address": false,
"is_primary": true
}
]
}'company_name sits in additional_infos, which is what makes this a business — so first_name is no longer required. It is sent anyway here, because it names the person to deal with at that business.
This example carries no addresses, only to show that the array is optional. You can send addresses on a business exactly as the person example does — add the same addresses array, typed by hand or picked from Google Places. Nothing about a business changes how addresses work.
{
"contact_infos": {
"first_name": "Rohan",
"last_name": "Verma",
"title": "Mr",
"email": "rohan.verma@example.com",
"phone_number": "919685745259"
},
"additional_infos": {
"company_name": "Verma Enterprises"
}
}The created customer. Store the id — it is what you pass as customer_id when you raise an invoice.
{
"id": 16908,
"title": null,
"first_name": "Priya",
"last_name": "Sharma",
"display_name": "Priya Sharma",
"email": "priya.sharma@example.com",
"phone_number": "919685745259",
"addresses": [
{
"id": "14893",
"type": "billing",
"formatted_address": "A-5, Block A, Sector 26A, Gurugram, Haryana 122002, India",
"administrative_area_level_1": "HR",
"administrative_area_level_2": "Gurgaon Division",
"country": "IN",
"locality": "Gurugram",
"postal_code": "122002",
"route": "A-5",
"street_number": null,
"google_place_id": "EjlBLTUsIEJsb2NrIEEsIFNlY3RvciAyNkE...",
"latitude": 28.4728561,
"longitude": 77.0995667,
"is_google_address": true,
"address_line_1": null,
"address_line_2": null,
"is_primary": true
}
],
"open_balance": 0,
"over_due": 0,
"is_active": true
}| Field | You sent | Comes back as |
|---|---|---|
id | Nothing | The customer id. This is the only place you get it. |
display_name | Nothing — it is not a request field | Derived. Priya Sharma from the first and last name; on a business it is derived from company_name instead. |
open_balance / over_due | Nothing | 0 on a new customer. They move as invoices and payments are recorded. |
is_active | Nothing | true. |
| Field | Behaviour |
|---|---|
id | Each address is assigned one — and it is a string, "14893", not a number. |
address_line_1 / address_line_2 | Added to every address as null. They are not request fields. |
street_number | Comes back null when Google did not supply one, whether you sent null or an empty string. |
Everything else | Returned as you sent it — formatted_address, locality, postal_code, the Places fields, is_google_address and is_primary all pass through. |
type. Send billing and shipping and you get both back; send one and you get one. Nothing is invented for you.Everything above is identical. The only difference is an add_infos array, placed after addresses, holding the company name you sent:
"add_infos": [
{ "id": 618, "company_name": "Verma Enterprises" }
],additional_infos.company_name — an object. It returns as add_infos[0].company_name — an array, under a shortened key. Three things to get right at once, so read it from add_infos[0] rather than reusing the request path.add_infos key at all — it is not an empty array. Check the key exists before indexing into it, or a person record will throw.website, gst_treatment, payment terms, tax exemption — live on the same add_infos record, but the create response returns only id and company_name. How to set or read the rest has not been supplied.| Status | Meaning |
|---|---|
| 200 | Customer created. The record is returned. |
| 422 | A required field is missing or an address entry is invalid. |
Read your customers back, a page at a time.
Returns your customers in pages. Use the id of the one you want when you raise an invoice. Each entry carries the customer's addresses and outstanding balance, so a customer list in your own UI does not need a second call per row.
| Field | Type | Required | Description |
|---|---|---|---|
page | integer | Required | Which page to return, starting at 1. |
page_length | integer | Required | How many customers per page. See the warning below — the example did not get back the size it asked for. |
type | string | Required | Which kind of contact to return — customer in the capture. Probably redundant now that the path itself says customers; see the note below. |
sort | string | Required | A JSON object, sent as a string, with sort_by and sort_order. Both empty strings in the example, which gives you the default order. |
search | string | Required | A JSON object, sent as a string, holding your filters. The example sends {"bothActiveInactive":2}. |
sort and search carry braces and quotes, so encode them before putting them in the query string — --data-urlencode in cURL, or your HTTP client's own parameter handling. Pasting the raw JSON into a URL will not work.bothActiveInactive with the value 2 is the one filter confirmed to work. Judging by the name it controls whether inactive customers are included, but what 1 and 0 do has not been supplied — so this is the only value you can rely on today.search accepts — by name, by email, by balance — is not documented.sort_by takes, and whether sort_order wants asc/desc, has not been supplied. Send both empty for the default order./contacts — a shared endpoint for every kind of contact, where type=customer was what narrowed it to customers. Now that the path is /customers, that filter has nothing left to do. Confirm whether it can be dropped.curl -G \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/customers' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
--data-urlencode 'page=1' \
--data-urlencode 'page_length=10' \
--data-urlencode 'type=customer' \
--data-urlencode 'sort={"sort_by":"","sort_order":""}' \
--data-urlencode 'search={"bothActiveInactive":2}'The customers are in data, with the paging fields around it. Build your paging from current_page, last_page and total, not from the URLs in the response.
/contacts, before GET /products and GET /invoices moved to a data plus meta envelope with slimmer entries. Expect this endpoint to have changed the same way — read the response below for the field names, not as the current shape.page_length=10 against 6 total customers, which should be a single page. What came back was per_page: 1 and last_page: 6 — one customer per page. Either page_length is ignored on this endpoint or it is read from somewhere else. Do not assume the page size you ask for is the page size you get: read per_page and last_page off the response and page until current_page reaches last_page.| Field | What it tells you |
|---|---|
display_name | What to show in your UI. It is the company name for a business and the person's own name for an individual, so you never have to assemble it from the name parts. |
open_balance / over_due | What the customer owes in total, and how much of that is past its due date. Both 600 in the example, meaning the whole balance is overdue. |
addresses | The billing and shipping addresses, each tagged with its type — the same shape you sent when you created the customer. |
add_infos | The extra customer record — payment term, GST treatment, delivery method, classification. Always an array, with one entry per contact. |
type | The contact kind, echoing the type you filtered on. |
transactions | Present on the list but empty in the example. What populates it has not been confirmed. |
add_infos carries pets, resident_access and occupants, and the contact carries renter_insurance and tds_config. These belong to other products built on the same contact record and mean nothing for invoicing — leave them alone.{
"current_page": 1,
"data": [
{
"id": 5,
"shopify_id": null,
"uuid": "107cacec-53d3-407b-8bb2-cca2f9bb14ce",
"title": null,
"first_name": "David",
"middle_name": "Kwan",
"last_name": "Chen",
"display_name": "David Kwan Chen",
"name_on_checks": null,
"email": "david.chen@example.com",
"phone_number": "+918746145263",
"mobile_number": null,
"type": "customer",
"created_at": "2026-03-09T13:15:34.000000Z",
"updated_at": "2026-03-09T13:15:34.000000Z",
"deleted_at": null,
"is_active": 1,
"open_balance": 600,
"over_due": 600,
"transactions": [],
"notes": [],
"attachments": [],
"addresses": [
{
"id": "5",
"administrative_area_level_1": "Bengkulu",
"administrative_area_level_2": "Bengkulu City",
"country": "ID",
"formatted_address": "Bengkulu",
"google_place_id": "ChIJeZLjNx6wNi4R6qaQ53a1eaA",
"locality": "Bengkulu",
"postal_code": null,
"route": null,
"street_number": null,
"latitude": -3.7928451,
"longitude": 102.2607641,
"type": "shipping",
"is_google_address": true,
"address_line_1": null,
"address_line_2": null,
"is_primary": false
},
{
"id": "5",
"administrative_area_level_1": "Bengkulu",
"administrative_area_level_2": "Bengkulu City",
"country": "ID",
"formatted_address": "Bengkulu",
"google_place_id": "ChIJeZLjNx6wNi4R6qaQ53a1eaA",
"locality": "Bengkulu",
"postal_code": null,
"route": null,
"street_number": null,
"latitude": -3.7928451,
"longitude": 102.2607641,
"type": "billing",
"is_google_address": true,
"address_line_1": null,
"address_line_2": null,
"is_primary": false
}
],
"tax_rates": [],
"add_infos": [
{
"id": 7,
"parent_id": null,
"customer_type": 1,
"company_name": null,
"suffix": null,
"fax": null,
"website": null,
"other": null,
"exemption_id": null,
"exemption_details": null,
"opening_balance": null,
"as_of_balance": null,
"payment_method_id": null,
"delivery_method": "none",
"term_id": 4,
"is_tax_exempt": false,
"tax_number": null,
"gst_treatment": "Unregistered Business",
"customer_classification": "regular",
"sez_supply_mode": null,
"lut_reference": null,
"pets": false,
"resident_access": false,
"occupants": null,
"user_id": null
}
],
"tds_config": null,
"renter_insurance": null
}
],
"first_page_url": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers?page=1",
"from": 1,
"last_page": 6,
"last_page_url": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers?page=6",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers?page=1",
"label": "1",
"active": true
},
{
"url": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers?page=2",
"label": "2",
"active": false
},
{
"url": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers?page=2",
"path": "https://services.ap.mochatechnologies.com/quickbill/api/v1/customers",
"per_page": 1,
"prev_page_url": null,
"to": 1,
"total": 6
}| Status | Meaning |
|---|---|
| 200 | The page is returned, even when data is empty. |
Read a single customer back by its id.
Returns one customer, with no paging envelope around it. This is the call to make before raising an invoice: it gives you the billing and shipping addresses to pass through, and the term_id that decides the due date.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The customer's id, as returned by POST /customers or found in the list. The example reads customer 5. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/customers/5' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"Mostly the same record you get inside data when you list customers — but not identically. Three differences matter if you write one piece of code to read both:
| Field | In the list | Here |
|---|---|---|
is_active | 1 — an integer | true — a boolean |
| The uuid | uuid | user_id — same value, different field name |
| Timestamps | created_at, updated_at, deleted_at | Not returned |
is_active as a boolean will misread the list, and code that reads uuid will find nothing here. Normalise both shapes into your own model as soon as you receive them.| Field | What it is |
|---|---|
contact_persons | Additional people to deal with at the customer. Empty in the example. |
custom_fields | Your own fields on the contact. Empty in the example. |
home_no, business_no, other_contact | Extra phone numbers beyond phone_number and mobile_number. |
tax_profile | Tax profile attached to the contact. Null in the example. |
"id": "5" — the same value as the contact's own id, and a string rather than a number. Whatever that field is, it does not identify the address, so key your UI on type instead. This needs checking on the API side.{
"id": 5,
"user_id": "107cacec-53d3-407b-8bb2-cca2f9bb14ce",
"title": null,
"first_name": "David",
"middle_name": "Kwan",
"last_name": "Chen",
"display_name": "David Kwan Chen",
"name_on_checks": null,
"email": "david.chen@example.com",
"phone_number": "+918746145263",
"mobile_number": null,
"type": "customer",
"shopify_id": null,
"tax_number": null,
"tax_profile": null,
"notes": [],
"attachments": [],
"addresses": [
{
"id": "5",
"administrative_area_level_1": "Bengkulu",
"administrative_area_level_2": "Bengkulu City",
"country": "ID",
"formatted_address": "Bengkulu",
"google_place_id": "ChIJeZLjNx6wNi4R6qaQ53a1eaA",
"locality": "Bengkulu",
"postal_code": null,
"route": null,
"street_number": null,
"latitude": -3.7928451,
"longitude": 102.2607641,
"type": "shipping",
"is_google_address": true,
"address_line_1": null,
"address_line_2": null,
"is_primary": false
},
{
"id": "5",
"administrative_area_level_1": "Bengkulu",
"administrative_area_level_2": "Bengkulu City",
"country": "ID",
"formatted_address": "Bengkulu",
"google_place_id": "ChIJeZLjNx6wNi4R6qaQ53a1eaA",
"locality": "Bengkulu",
"postal_code": null,
"route": null,
"street_number": null,
"latitude": -3.7928451,
"longitude": 102.2607641,
"type": "billing",
"is_google_address": true,
"address_line_1": null,
"address_line_2": null,
"is_primary": false
}
],
"tax_rates": [],
"add_infos": [
{
"id": 7,
"parent_id": null,
"customer_type": 1,
"company_name": null,
"suffix": null,
"fax": null,
"website": null,
"other": null,
"exemption_id": null,
"exemption_details": null,
"opening_balance": null,
"as_of_balance": null,
"payment_method_id": null,
"delivery_method": "none",
"term_id": 4,
"is_tax_exempt": false,
"tax_number": null,
"gst_treatment": "Unregistered Business",
"customer_classification": "regular",
"sez_supply_mode": null,
"lut_reference": null,
"pets": false,
"resident_access": false,
"occupants": null,
"user_id": null
}
],
"open_balance": 600,
"over_due": 600,
"is_active": true,
"custom_fields": [],
"contact_persons": [],
"home_no": null,
"business_no": null,
"other_contact": null,
"tds_config": null,
"association_due": 0
}| Status | Meaning |
|---|---|
| 200 | The contact is returned. |
| 404 | No contact with that id on your account. Not verified — the response for an unknown id has not been supplied. |
Take the next number in your sequence.
Returns the next invoice number for your account. Call this before creating an invoice and use what it gives you — the numbering is the server's to keep, not yours to generate.
None. No query string, no body — just the two authentication headers.
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/invoices/get-invoice-number' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"One field, and it is the whole point of the call:
{
"invoice_number": "INV-2025-001"
}invoice_no on the create body, and nowhere else. The server copies it into unique_no, reference_no and tracking_no for you — you will see all four come back on the response.INV-2025-001 here, INV-00016 in the create example, and INVOICE-387 on another account. The prefix, the padding and whether a year appears all vary. Treat the value as an opaque string: do not split it, do not increment it, and do not build the next one from the last one you saw.| Status | Meaning |
|---|---|
| 200 | The next number is returned. |
Bill a customer for one or more products.
Creates an invoice against an existing customer. Every line points at a product, so the customer and the products have to exist first. The server works out the totals — you do not send them.
customer_id, invoice_date, invoice_no and at least one entry in lines. Everything else — due date, shipping date, the message, the whole addresses array — is optional.| Field | Type | Required | Description |
|---|---|---|---|
customer_id | integer | Required | The id returned when you created the customer via POST /customers. |
invoice_date | string | Required | Date the invoice is raised, as YYYY-MM-DD. |
invoice_no | string | Required | The invoice number, up to 100 characters. Take it from GET /invoices/get-invoice-number rather than generating your own. |
lines | array | Required | The products being billed. At least one entry. See the table below. |
due_date | string | Optional | Date payment is due, as YYYY-MM-DD. |
shipping_date | string | Optional | Date the goods ship, as YYYY-MM-DD. |
message_on_invoice | string | null | Optional | A note to the customer, shown on the invoice. Send null or leave it out for none. |
addresses | array | Optional | Billing and shipping addresses. Optional as a whole — see the table below. |
amount, balance and the per-line amount are not request fields — the server calculates them. Same for unique_no, reference_no and tracking_no, which are all filled in from invoice_no. Send only what is in the table above.One entry per product being billed.
| Field | Type | Required | Description |
|---|---|---|---|
product_id | integer | Required | The id returned when you created the product via POST /products. |
rate | number | Required | Price per unit, as a plain number, zero or more. Overrides the product's own price. |
quantity | number | Required | How many units. Must be a whole number greater than zero — fractional quantities are rejected. |
rate and quantity are numbers — 120 and 1, not "120.00" or "1.0000000000". The response returns them as numbers too.Optional. When you do send it, each entry is tagged billing or shipping — those are the only two values accepted. An entry comes in one of two shapes depending on where the address came from.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | billing or shipping. |
address | string | Optional | Street line — for example Plot 23, MG Road. |
city | string | Optional | City name. |
state | string | Optional | State, spelled out — Maharashtra, not MH, in the example. |
zip_code | string | Optional | Postal or PIN code, as a string. |
country | string | Optional | Country, spelled out — India, not IN, in the example. |
| Field | Type | Required | Description |
|---|---|---|---|
is_google_address | integer | Required | 1 on a Google-sourced address. Note this is the integer 1, not true. |
google_place_id | string | Optional | The Places identifier for the selected address. |
address | string | Optional | The address as Google returned it. |
latitude | string | Optional | Latitude, as a string — "19.0760", not a number. |
longitude | string | Optional | Longitude, as a string. |
address, city, state, zip_code and country. The same address on POST /customers takes formatted_address, locality, administrative_area_level_1, postal_code and a two-letter country. You cannot read an address off a customer and post it straight onto an invoice — map the fields across, and note the invoice wants full names (Maharashtra, India) where the customer wants codes (MH, IN).1. On POST /customers it is the boolean true. Latitude and longitude are strings here and numbers there. Convert rather than copying.| Field | How it is derived |
|---|---|
unique_no, reference_no, tracking_no | All three copied from invoice_no. |
lines[].amount | rate × quantity. In the example: 120 × 1 = 120, and 500 × 3 = 1500. |
amount | The sum of every line amount — 120 + 1500 = 1620. |
balance | Equal to amount, since nothing has been paid on a new invoice. |
lines[].id | Each line is assigned its own id. |
| Field | Rule | Message |
|---|---|---|
customer_id | required, integer | The customer field is required. |
invoice_date | required, date | The invoice date field is required. |
invoice_no | required, max 100 characters | The invoice number field is required. |
lines | required, at least one entry | The line items field is required. |
lines[].product_id | required, integer | The product field is required. |
lines[].rate | required, numeric, zero or more | The rate field is required. |
lines[].quantity | required, numeric, greater than zero, whole number | The quantity must be a whole number. |
message_on_invoice | optional, string or null | — |
addresses[].type | billing or shipping, when an address is sent | — |
rate and keep quantity at a whole number — 1 × 750 rather than 1.5 × 500.customer_id, “the line items field” for lines, “the product field” for product_id. These are written for people, not for your code — match on the field key you sent, not on the message text.{
"customer_id": 16909,
"invoice_date": "2026-08-13",
"invoice_no": "INV-00016",
"due_date": "2026-08-28",
"shipping_date": "2026-08-20",
"message_on_invoice": "Thanks for your business",
"lines": [
{ "product_id": 3204, "rate": 120, "quantity": 1 },
{ "product_id": 3205, "rate": 500, "quantity": 3 }
],
"addresses": [
{
"type": "billing",
"address": "Plot 23, MG Road",
"city": "Mumbai",
"state": "Maharashtra",
"zip_code": "400001",
"country": "India"
},
{
"type": "shipping",
"is_google_address": 1,
"google_place_id": "ChIJ...",
"address": "...",
"latitude": "19.0760",
"longitude": "72.8777"
}
]
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/invoices' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"customer_id": 16909,
"invoice_date": "2026-08-13",
"invoice_no": "INV-00016",
"due_date": "2026-08-28",
"shipping_date": "2026-08-20",
"message_on_invoice": "Thanks for your business",
"lines": [
{ "product_id": 3204, "rate": 120, "quantity": 1 },
{ "product_id": 3205, "rate": 500, "quantity": 3 }
],
"addresses": [
{
"type": "billing",
"address": "Plot 23, MG Road",
"city": "Mumbai",
"state": "Maharashtra",
"zip_code": "400001",
"country": "India"
},
{
"type": "shipping",
"is_google_address": 1,
"google_place_id": "ChIJ...",
"address": "...",
"latitude": "19.0760",
"longitude": "72.8777"
}
]
}'Four fields, one line, no addresses. Everything else is filled in by the server:
{
"customer_id": 16909,
"invoice_date": "2026-08-13",
"invoice_no": "INV-00016",
"lines": [
{ "product_id": 3204, "rate": 120, "quantity": 1 }
]
}The created invoice, with the customer expanded inline and the totals calculated. Store the id — it is what you pass in paidAmount when you record a payment.
{
"id": 1185,
"customer_id": 16909,
"customer": {
"id": 16909,
"title": "Mr",
"first_name": "Aarav",
"last_name": "Mehta",
"display_name": "Aarav Mehta",
"email": "aarav.mehta@example.com",
"phone_number": "+91-9876543210",
"addresses": [ { "...": "as stored" } ],
"add_infos": [ { "id": 88, "company_name": "Mehta Traders" } ],
"open_balance": 1620,
"over_due": 0,
"is_active": true
},
"invoice_date": "2026-08-13",
"due_date": "2026-08-28",
"shipping_date": "2026-08-20",
"unique_no": "INV-00016",
"reference_no": "INV-00016",
"tracking_no": "INV-00016",
"message_on_invoice": "Thanks for your business",
"lines": [
{ "id": 1492, "product_id": 3204, "quantity": 1, "rate": 120, "amount": 120 },
{ "id": 1493, "product_id": 3205, "quantity": 3, "rate": 500, "amount": 1500 }
],
"addresses": [ { "...": "as stored" } ],
"amount": 1620,
"balance": 1620
}| Field | What it is |
|---|---|
id | The invoice id — 1185 here. Use it to read the invoice back, and to apply payments to it. |
customer | The customer expanded inline, with its addresses and add_infos, so an invoice screen needs no second call. |
customer.open_balance | Already includes this invoice — 1620 in the example, matching its balance. |
amount / balance | Both 1620 on a fresh invoice. balance drops as payments are applied. |
lines | Your lines with an id and the calculated amount added. rate and quantity come back as you sent them. |
addresses | The addresses as stored. |
customer.open_balance on this response already reflects the invoice you just created. That is worth knowing because the same field comes back null inside GET /invoices — so trust it here, not there.| Status | Meaning |
|---|---|
| 200 | Invoice created. The record is returned. |
| 404 | The customer or one of the products on this invoice was not found. |
| 422 | Validation failed, or the invoice could not be created with the details provided. |
customer_id and a bad product_id both return “The customer or one of the products on this invoice was not found”, and the message does not say which. With several lines you will not be told which product is the problem either — check the ids yourself before blaming the invoice.Read your invoices back, a page at a time.
Returns your invoices in pages. Each entry is the full invoice record — the customer expanded inline, the lines with their amounts, and the totals — so an invoice list screen needs no extra call per row.
| Field | Type | Required | Description |
|---|---|---|---|
page | integer | Required | Which page to return, starting at 1. |
page_length | integer | Required | How many invoices per page. Comes back as meta.per_page. |
search | string | Required | A JSON object, sent as a string, holding your filters. Send {} for no filter, and URL-encode it. Which keys it accepts has not been supplied. |
curl -G \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/invoices' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
--data-urlencode 'page=1' \
--data-urlencode 'page_length=1' \
--data-urlencode 'search={}'Two keys: the invoices in data, and the paging in meta — the same envelope GET /products uses. Each entry is the same record POST /invoices and GET /invoices/:id return, so one invoice model in your code covers all three.
| Field | What it is |
|---|---|
total | How many invoices exist in total, across every page — 8 in the example. |
current_page | The page you are on, echoing the page you asked for. |
last_page | The highest page number available. Stop paging when current_page reaches it. |
per_page | Page size in effect, echoing page_length. |
from / to | Position of the first and last item on this page within the full set. |
next_page_url, links or path. Page with current_page against last_page.| Field | What it tells you |
|---|---|
amount / balance | What the invoice is for, and what is still owed. Equal on an invoice nothing has been paid against. |
customer | The customer expanded inline, so a list screen needs no extra call per row. |
lines | The lines in full, each with its id and calculated amount. |
unique_no, reference_no, tracking_no | All three carry the invoice number. |
balance against amount — equal means nothing paid, zero means settled, anything between is a part payment.{
"data": [
{
"id": 1185,
"customer_id": 16909,
"customer": { "...": "as stored" },
"invoice_date": "2026-08-13",
"due_date": "2026-08-28",
"shipping_date": "2026-08-20",
"unique_no": "INV-00016",
"reference_no": "INV-00016",
"tracking_no": "INV-00016",
"message_on_invoice": "Thanks for your business",
"lines": [
{ "id": 1492, "product_id": 3204, "quantity": 1, "rate": 120, "amount": 120 },
{ "id": 1493, "product_id": 3205, "quantity": 3, "rate": 500, "amount": 1500 }
],
"addresses": [ { "...": "as stored" } ],
"amount": 1620,
"balance": 1620
}
],
"meta": {
"current_page": 1,
"per_page": 10,
"last_page": 1,
"total": 8,
"from": 1,
"to": 8
}
}| Status | Meaning |
|---|---|
| 200 | The page is returned, even when data is empty. |
Read one invoice back in full.
Returns one invoice — the same record POST /invoices hands back when it creates one, with the customer expanded inline, the lines with their calculated amounts, and the addresses as stored. This is the call for an invoice detail screen, and the way to check a balance after a payment.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The invoice's id, as returned by POST /invoices or found in the list. The example reads invoice 1185. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/invoices/7' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"Identical in shape to the create response, so one invoice model in your code covers both calls:
{
"id": 1185,
"customer_id": 16909,
"customer": {
"id": 16909,
"title": "Mr",
"first_name": "Aarav",
"last_name": "Mehta",
"display_name": "Aarav Mehta",
"email": "aarav.mehta@example.com",
"phone_number": "+91-9876543210",
"addresses": [ { "...": "as stored" } ],
"add_infos": [ { "id": 88, "company_name": "Mehta Traders" } ],
"open_balance": 1620,
"over_due": 0,
"is_active": true
},
"invoice_date": "2026-08-13",
"due_date": "2026-08-28",
"shipping_date": "2026-08-20",
"unique_no": "INV-00016",
"reference_no": "INV-00016",
"tracking_no": "INV-00016",
"message_on_invoice": "Thanks for your business",
"lines": [
{ "id": 1492, "product_id": 3204, "quantity": 1, "rate": 120, "amount": 120 },
{ "id": 1493, "product_id": 3205, "quantity": 3, "rate": 500, "amount": 1500 }
],
"addresses": [ { "...": "as stored" } ],
"amount": 1620,
"balance": 1620
}| Field | What it is |
|---|---|
balance | What is still owed. This is the field to read after recording a payment — it is the only place the new figure appears. |
amount | The invoice total. Compare it against balance to tell whether anything has been paid. |
customer | The customer expanded inline, with its addresses, add_infos and open_balance — no second call needed. |
lines | Each line with its own id, the product_id, quantity, rate and the calculated amount. |
addresses | The addresses as stored on the invoice. The list endpoint returns this empty, so this is where to read them. |
unique_no, reference_no, tracking_no | All three carry the invoice number. There is no separate invoice_no on the response. |
balance against amount. Equal means nothing paid; zero means settled; anything between is a part payment.<p> tags and the like). If you render it, sanitise it first and never inject it straight into the DOM; if you only need text, strip the tags rather than escaping the whole string.| Status | Meaning |
|---|---|
| 200 | The invoice is returned. |
| 404 | No invoice with that id. Not verified — the response body for an unknown id has not been supplied. |
Take the next reference in your payment sequence.
Returns the next payment reference for your account. Call this before recording a payment and send what it gives you as reference_no.
None. No query string, no body — just the two authentication headers.
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/payments/get-next-payment-number' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"The reference is nested one level down, under data:
{
"success": true,
"data": {
"reference_no": "PMT-00417"
}
}data.success flag; this one does.invoice_number there and reference_no here.response.invoice_number and response.data.reference_no — do not write one helper for both.PMT- prefix off, do not increment the digits, and do not build the next reference from the last one you saw — the format varies between accounts, exactly as invoice numbers do.PMT-00417 — so take the reference and record the payment straight away rather than holding it.success: false looks like, and when it happens. Only the success case has been supplied, so check the flag rather than assuming data is always there.| Status | Meaning |
|---|---|
| 200 | The next reference is returned. |
Record a payment against a customer's open invoices.
Records money received from a customer and applies it to the invoices you name. One call can settle several invoices at once — list each of them in paidAmount with the amount going to it. The invoice has to exist first, so create it with POST /invoices before you call this.
All six are required.
| Field | Type | Required | Description |
|---|---|---|---|
customer_id | integer | Required | The customer the money came from — the id from POST /customers. Every invoice in paidAmount must belong to this customer. |
account_id | integer | Required | Id of the account the money is deposited into — your bank or cash account. |
payment_method | integer | Required | How the money was paid. Get the available ids from GET /payment-methods rather than hard-coding them. |
payment_date | string | Required | Date the money was received, as YYYY-MM-DD. |
reference_no | string | Required | The payment's own reference — PMT-00004 in the example. Take it from GET /payments/get-next-payment-number rather than generating it yourself. |
paidAmount | array | Required | Which invoices the money is applied to, and how much goes to each. See the table below. |
paidAmount. Sending paid_amount will not work.1, not "1". The ids and what each one means come from GET /payment-methods — that endpoint is not documented here yet, so ask for the list rather than guessing.One entry per invoice the payment is applied to.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The invoice's id, as returned by POST /invoices. Invoice 8 in the example is the one that comes back as INV-00008. |
payment | string | Required | Amount applied to that invoice, as a string with two decimal places. Must be greater than zero. |
"1500.00" — a string here, even though every money value in a response comes back as a plain number. Send it as shown.balance will show the remainder. Record the rest later against the same invoice id.{
"customer_id": 5,
"account_id": 21,
"payment_method": 1,
"payment_date": "2026-08-10",
"reference_no": "PMT-00004",
"paidAmount": [
{ "id": 8, "payment": "1500.00" }
]
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/payments' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"customer_id": 5,
"account_id": 21,
"payment_method": 1,
"payment_date": "2026-08-10",
"reference_no": "PMT-00004",
"paidAmount": [
{ "id": 8, "payment": "1500.00" }
]
}'Unlike the other endpoints on this page, this one does not return the record it created — just two fields:
| Field | What it is |
|---|---|
payment_id | Id of the payment record that was created. Store it against your own transaction — this is the only place you get it, and it is what you pass to GET /payments/:id. |
invoice_numbers | The customer-facing numbers of the invoices the payment was applied to — INV-00008 here. |
{
"invoice_numbers": "INV-00008",
"payment_id": 6
}201. Creating a product, a customer or an invoice all return 200. If your client treats anything other than 200 as a failure, a payment that was recorded perfectly well will look like an error.success field, so the status code is all you have. Treat 201 as recorded and anything else as not recorded.balance.paidAmount has more than one entry has not been confirmed — do not parse it until it has.A 422 carries a message and an errors object keyed by field:
{
"message": "The invoice field is required.",
"errors": {
"paidAmount.0.id": ["The invoice field is required."]
}
}paidAmount is reported as paidAmount.0.id — the array index is part of the key. To highlight the right row in a form, split the key on dots rather than looking for a plain field name. And as elsewhere, the message text names the field for people (“the invoice field”), not by its key.| Status | Meaning |
|---|---|
| 201 | Payment recorded. |
| 422 | Validation failed — a required field is missing, or a value is not acceptable. |
| 500 | Unexpected error. |
Read recorded payments back, a page at a time.
Returns the payments recorded on your account, in pages. Each entry is a summary row — enough for a payments list screen, with the customer flattened onto it so no extra call is needed per row.
All optional. Send none of them and you get the first ten payments, unfiltered.
| Parameter | Type | Default |
|---|---|---|
page | integer | 1 |
page_length | integer | 10 |
search | string (JSON) | {} |
--data-urlencode in cURL. Which keys it accepts has not been supplied.curl -G \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/payments' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
--data-urlencode 'page=1' \
--data-urlencode 'page_length=10' \
--data-urlencode 'search={"type":"payment"}'The payments in data, the paging in meta — the same envelope the product and invoice lists use.
{
"data": [
{
"id": 6,
"type": "payment",
"amount": -1500,
"date": "2026-08-10",
"no": "PMT-00004",
"customer_id": 5,
"customer_name": "David Kwan Chen",
"email": "david.chen@example.com",
"due_date": null,
"balance": null
}
],
"meta": {
"current_page": 1,
"per_page": 10,
"last_page": 1,
"total": 1,
"from": null,
"to": null
}
}| Field | What it is |
|---|---|
id | The payment id. Use it to read the payment back by id. |
type | Always "payment" on this endpoint. |
amount | What was received — negative, because a payment reduces what the customer owes. See the warning below. |
date | The date the money was received. |
no | The payment reference — PMT-00004. Note the field is called no here, not reference_no. |
customer_id, customer_name, email | Who the money came from, flattened onto the row. |
due_date / balance | Always null. They do not apply to a payment — the row shape is shared with other kinds of sales transaction. |
-1500, because in the sales ledger it reduces the receivable. Take the absolute value before you show it, or your users will see a minus sign against money they received.-1500, not "-1500.0000000000". You do not have to parse a decimal string.from and to are never filled in here. Use current_page, last_page and total; do not compute a “showing 1–10 of 50” label from from and to on this endpoint.invoice_id on the row, and a single payment can cover several invoices anyway. Go the other way round: read the invoice with GET /invoices/:id and check its balance, or read the payment by id.An empty account is a 200 with an empty data array — not an error, and not a 404:
{
"data": [],
"meta": {
"current_page": 1,
"per_page": 10,
"last_page": 1,
"total": 0,
"from": null,
"to": null
}
}A single message, whatever went wrong:
{
"message": "Failed to fetch payments"
}| Status | Meaning |
|---|---|
| 200 | The page is returned, even when data is empty. |
| 500 | Unexpected error. |
Read one payment back, with what it was applied to.
Returns one payment. The response is not a single record — it is three objects at the top level, each answering a different question about the same payment.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The payment_id that POST /payments returned. The example reads payment 520. This is not the transaction id — in the example the transaction is 1738, and that value will not work here. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/payments/520' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"| Key | What it holds | Use it for |
|---|---|---|
payment | The payment record — amount, date, method, deposit account, reference, and one allocation row per invoice. | Everything about the payment itself. |
receivePayment.invoices | The invoices this payment settled, each in full. | Showing what was paid, and each invoice's remaining balance. |
transaction | The ledger entry the payment produced. | Tying the payment to your books. |
receivePayment.invoices is exactly what GET /invoices/:id returns — same fields, same lines, same addresses. Your existing invoice model reads them without changes. In the example the invoice comes back with balance: 0, so this payment settled it in full.| Field | What it is |
|---|---|
payment_amount | The total received — a positive number, unlike the negative amount the list endpoint returns. |
payment_method / account_id | The two values you sent when recording it. |
reference_no | The PMT- reference. Repeated on every allocation row. |
invoice_receive_payment | One row per invoice the payment was applied to — invoice_id and the amount that went to it. |
payment.invoice_receive_payment is what tells you how much of this payment went to which invoice. The invoices under receivePayment show their own totals and balances, which is not the same thing — an invoice with a 29.99 balance cleared could have been settled by two payments.| Field | What it is |
|---|---|
id | The ledger transaction's own id — 1738 here. Not the payment id. |
transaction_type_id | The payment id — 520 here. Despite the name, this is the link back to the payment. |
transaction_ref | The PMT- reference again. |
total | The payment amount, positive. |
contact_id | The customer. Note it is contact_id here and customer_id on the payment object. |
payment.id is 520, transaction.id is 1738, and transaction.transaction_type_id is 520 again — the payment id under a name that reads like a type. Only payment.id works in this endpoint's URL.29.99, not "29.9900000000". The underlying store keeps ten-decimal strings and this endpoint converts them, so you do not have to parse anything.invoice_receive_payment. The underlying service misspells it (paymnet); this API corrects it before returning. Use the correct spelling — and if you have code written against the misspelling from an earlier version, it will read undefined now.{
"receivePayment": {
"invoices": [
{
"id": 995,
"customer_id": 1108,
"customer": { "...": "customer object" },
"invoice_date": "2026-07-01",
"due_date": "2026-07-16",
"shipping_date": null,
"unique_no": "INV-00995",
"reference_no": "INV-00995",
"tracking_no": "INV-00995",
"message_on_invoice": null,
"lines": [
{ "id": 3001, "product_id": 44, "quantity": 1, "rate": 29.99, "amount": 29.99 }
],
"addresses": [ { "...": "as stored" } ],
"amount": 29.99,
"balance": 0
}
]
},
"transaction": {
"id": 1738,
"contact_id": 1108,
"date": "2026-07-09",
"transaction_type": "payment",
"balance": 0,
"due_date": null,
"transaction_type_id": 520,
"transaction_ref": "PMT-00462",
"payee": null,
"total": 29.99
},
"payment": {
"id": 520,
"customer_id": 1108,
"payment_amount": 29.99,
"payment_date": "2026-07-09",
"payment_method": 4,
"account_id": 29,
"reference_no": "PMT-00462",
"invoice_receive_payment": [
{
"id": 520,
"payment_id": 520,
"payment": 29.99,
"invoice_id": 995,
"payment_date": "2026-07-09",
"payment_method_id": 4,
"account_id": 29,
"reference_no": "PMT-00462"
}
]
}
}{
"message": "Payment not found"
}| Status | Meaning |
|---|---|
| 200 | The payment is returned. |
| 404 | No payment with that id. |
| 500 | Unexpected error. |
message, with errors added on a 422. Only the text differs — Payment not found here, Failed to fetch payments on the list. Branch on the status code, not the wording.Add a fixed or an adjustment pricing component.
Creates a pricing component.
| Field | Type | Required | Description |
|---|---|---|---|
component_name | string | Required | max 255 |
component_code | string | Required | max 50, must be unique |
calculation_type | string | Required | fixed or adjustment |
base_amount | number | Required | 0 or more |
adjustment | object | Optional | Required when calculation_type is adjustment. See below. |
| Field | Type | Values |
|---|---|---|
adjustment_type | string | add or discount |
type | string | percent or flat_amount |
value | number | 0 or more |
{
"component_name": "Setup Fee",
"component_code": "SETUP",
"calculation_type": "fixed",
"base_amount": 2500
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-components' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"component_name": "Setup Fee",
"component_code": "SETUP",
"calculation_type": "fixed",
"base_amount": 2500
}'{
"component_name": "Service Charge",
"component_code": "SVCCHG",
"calculation_type": "adjustment",
"base_amount": 0,
"adjustment": {
"adjustment_type": "add",
"type": "percent",
"value": 4
}
}A component is priced one way or the other. A fixed component carries base_amount and has no adjustment key; an adjustment component carries adjustment and has no base_amount.
{
"id": 10,
"component_code": "SETUP",
"component_name": "Setup Fee",
"calculation_type": "fixed",
"is_active": false,
"pricing_plans": [],
"base_amount": 2500
}{
"id": 12,
"component_code": "SVCCHG",
"component_name": "Service Charge",
"calculation_type": "adjustment",
"is_active": false,
"pricing_plans": [],
"adjustment": {
"adjustment_type": "add",
"type": "percent",
"value": 4
}
}Every component response carries pricing_plans — the plans this component is part of. It is a response-only field; you never send it. Each entry is slim, three fields:
| Field | What it is |
|---|---|
id | The plan's id. |
name | The plan's name. |
code | The plan's code. |
"pricing_plans": [
{ "id": 5, "name": "Standard Monthly Plan", "code": "STDMON" },
{ "id": 6, "name": "Yearly Plan", "code": "YRLY" }
]pricing_plans comes back as []. It fills in once the component is put on a plan with POST /pricing-plans. Read it back with GET /pricing-components/:id to see the plans it ended up on.pricing_plans key at all — it would point back at the plan you are already reading. Do not expect the field there.There is no start_date or end_date on this endpoint, and none on the other component endpoints either. A component on its own is not something that starts or stops.
components[].start_date and components[].end_date. They are that component's lifetime on that plan, so the same component can run for different dates on two different plans. That is also why they come back inside a plan response and never on a component response.| Status | Meaning |
|---|---|
| 201 | The component is created. |
| 422 | Validation failed, or the component code is already in use. |
| 500 | Unexpected error. |
The bodies for each of those are in Pricing Component Errors.
Replace a pricing component with how it should end up.
Updates a pricing component. Send the whole component as it should end up, not only the fields that changed. The payload is the same as create; the id goes in the path.
{
"component_name": "Service Charge",
"component_code": "SVCCHG",
"calculation_type": "adjustment",
"base_amount": 0,
"adjustment": {
"adjustment_type": "add",
"type": "percent",
"value": 4
}
}curl -X PUT \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-components/12' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"component_name": "Service Charge",
"component_code": "SVCCHG",
"calculation_type": "adjustment",
"base_amount": 0,
"adjustment": {
"adjustment_type": "add",
"type": "percent",
"value": 4
}
}'Same shape as the create response.
| Status | Meaning |
|---|---|
| 200 | The component is updated. |
| 404 | No pricing component with that id. |
| 422 | Validation failed, or the component code is already in use. |
| 500 | Unexpected error. |
Every component at once, with no pagination.
Returns all pricing components in one call — there is no pagination on this endpoint.
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-components' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"The components come back inside data. Each item is the same shape as the create and update responses — all four endpoints pass through the same mapper.
{
"data": [
{
"id": 10,
"component_code": "SETUP",
"component_name": "Setup Fee",
"calculation_type": "fixed",
"is_active": true,
"pricing_plans": [
{ "id": 5, "name": "Standard Monthly Plan", "code": "STDMON" },
{ "id": 6, "name": "Yearly Plan", "code": "YRLY" }
],
"base_amount": 2500
},
{
"id": 12,
"component_code": "SVCCHG",
"component_name": "Service Charge",
"calculation_type": "adjustment",
"is_active": true,
"pricing_plans": [],
"adjustment": { "adjustment_type": "add", "type": "percent", "value": 4 }
},
{
"id": 14,
"component_code": "LOYALTY",
"component_name": "Loyalty Discount",
"calculation_type": "adjustment",
"is_active": true,
"pricing_plans": [],
"adjustment": { "adjustment_type": "discount", "type": "flat_amount", "value": 100 }
}
]
}| Status | Meaning |
|---|---|
| 200 | The components are returned. |
| 500 | Unexpected error. |
Read one component back by its id.
Returns one pricing component as a plain object — no wrapper. The list endpoint puts its items inside data; this one does not.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The component's id, as returned by POST /pricing-components. The example reads component 14. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-components/14' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"{
"id": 14,
"component_code": "LOYALTY",
"component_name": "Loyalty Discount",
"calculation_type": "adjustment",
"is_active": true,
"pricing_plans": [],
"adjustment": { "adjustment_type": "discount", "type": "flat_amount", "value": 100 }
}{
"message": "Pricing component not found"
}| Status | Meaning |
|---|---|
| 200 | The component is returned. |
| 404 | No pricing component with that id. |
| 500 | Unexpected error. |
What comes back when a create or an update is refused.
| Status | When | Response |
|---|---|---|
| 422 | validation failed | 422 Unprocessable |
| 422 | code already in use | 422 Unprocessable |
| 404 | component not found (update, get by id) | 404 Not Found |
| When | Message |
|---|---|
bad calculation_type | The calculation type must be either fixed or adjustment. |
adjustment missing | The adjustment is required when the calculation type is adjustment. |
bad adjustment_type | The adjustment type must be either add or discount. |
bad type | The adjustment must be either a percent or a flat_amount. |
| negative value | The adjustment value field must be at least 0. |
These are dropped if sent:
cost_amountmin_amountmax_amountquantitydisplay_orderitem_type_idis_taxableBuild a plan out of pricing components.
A plan is built from one or more pricing components.
calculation_type is fixed. A plan made only of adjustments has nothing to adjust, so it is rejected.price is worked out from the components the plan holds, and it comes back on every response. It is never sent in.Every date is sent and returned as YYYY-MM-DD — no time, no timezone.
2027-03-30T18:30:00.000Z will not be accepted. It has to be rejected, because that value is 30 March in UTC and 31 March in India — the day it means depends on where it is read. 2027-03-31 means the same day everywhere.| Field | Type | Required | Description |
|---|---|---|---|
name | string | Required | max 255 |
code | string | Required | max 50, must be unique |
plan_type | string | Required | standard |
effective_date | date | Required | YYYY-MM-DD, the day the plan starts. |
description | string | Optional | Free text. |
expiration_date | date | Optional | YYYY-MM-DD, must be after effective_date. |
components | array | Required | At least one, and at least one of them must be a fixed component. |
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | Id of the pricing component. |
start_date | date | Required | YYYY-MM-DD, when it starts being charged. Must fall within the plan's dates. |
end_date | date | Optional | YYYY-MM-DD, must be after start_date and within the plan's dates. |
start_date and end_date must both fall between the plan's effective_date and expiration_date. A component cannot start before the plan does or run on after it ends.expiration_date — the plan runs on with no end.end_date on a component — the component stays for as long as the plan does.{
"name": "Yearly Plan",
"code": "YRLY",
"plan_type": "standard",
"description": "Covers the yearly subscription fee.",
"effective_date": "2026-08-31",
"expiration_date": "2027-03-31",
"components": [
{
"id": 10,
"start_date": "2026-08-31",
"end_date": "2026-09-30"
}
]
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-plans' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"name": "Yearly Plan",
"code": "YRLY",
"plan_type": "standard",
"description": "Covers the yearly subscription fee.",
"effective_date": "2026-08-31",
"expiration_date": "2027-03-31",
"components": [
{ "id": 10, "start_date": "2026-08-31", "end_date": "2026-09-30" }
]
}'The whole plan, with each component reported in full and the two dates it runs for added to it. price is worked out from those components.
{
"id": 6,
"name": "Yearly Plan",
"code": "YRLY",
"description": "Covers the yearly subscription fee.",
"plan_type": "standard",
"effective_date": "2026-08-31",
"expiration_date": "2027-03-31",
"price": 2500,
"is_active": false,
"components": [
{
"id": 10,
"component_code": "SETUP",
"component_name": "Setup Fee",
"calculation_type": "fixed",
"is_active": true,
"base_amount": 2500,
"start_date": "2026-08-31",
"end_date": "2026-09-30"
}
]
}fixed component carries base_amount and an adjustment component carries adjustment. See Pricing Components for that shape.start_date and end_date are added — those are the dates the component runs for on this plan. And pricing_plans is not there: on its own endpoints a component lists the plans it is on, but inside a plan that would point back at the plan you are already reading.| Status | Meaning |
|---|---|
| 201 | The plan is created. |
| 422 | Validation failed, the code is already in use, or the plan has no fixed component. |
| 404 | A component in the plan does not exist. |
| 500 | Unexpected error. |
The bodies for each of those are in Pricing Plan Errors.
Replace a plan with how it should end up.
Updates a plan. Send the whole plan as it should end up, not only the fields that changed. The payload is the same as create; the id goes in the path.
YYYY-MM-DD only — a timestamp is rejected here too. expiration_date must be after effective_date, and every component's dates must sit inside the plan's. They are spelled out under Create a Pricing Plan → Dates.{
"name": "Yearly Plan",
"code": "YRLY",
"plan_type": "standard",
"description": "Covers the yearly subscription fee.",
"effective_date": "2026-08-31",
"expiration_date": "2027-03-31",
"components": [
{
"id": 10,
"start_date": "2026-08-31",
"end_date": "2026-09-30"
}
]
}curl -X PUT \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-plans/6' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"name": "Yearly Plan",
"code": "YRLY",
"plan_type": "standard",
"description": "Covers the yearly subscription fee.",
"effective_date": "2026-08-31",
"expiration_date": "2027-03-31",
"components": [
{ "id": 10, "start_date": "2026-08-31", "end_date": "2026-09-30" }
]
}'Same shape as the create response.
| Status | Meaning |
|---|---|
| 200 | The plan is updated. |
| 404 | No pricing plan with that id. |
| 422 | Validation failed, the code is already in use, or the plan has no fixed component. |
| 500 | Unexpected error. |
Every plan at once, with no pagination.
Returns every plan in one go. There is no pagination on this endpoint.
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-plans' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"The plans come back inside data, each with its components expanded.
{
"data": [
{
"id": 5,
"name": "Standard Monthly Plan",
"code": "STDMON",
"description": null,
"plan_type": "standard",
"effective_date": "2026-08-31",
"expiration_date": null,
"price": 2500,
"is_active": true,
"components": [
{
"id": 10,
"component_code": "SETUP",
"component_name": "Setup Fee",
"calculation_type": "fixed",
"is_active": true,
"base_amount": 2500,
"start_date": "2026-08-31",
"end_date": null
}
]
}
]
}| Status | Meaning |
|---|---|
| 200 | The plans are returned. |
| 500 | Unexpected error. |
Read one plan back by its id.
Returns one plan — the same shape as a list item, without the data wrapper.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | The plan's id, as returned by POST /pricing-plans. The example reads plan 5. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/pricing-plans/5' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"{
"id": 5,
"name": "Standard Monthly Plan",
"code": "STDMON",
"description": null,
"plan_type": "standard",
"effective_date": "2026-08-31",
"expiration_date": null,
"price": 2500,
"is_active": true,
"components": [
{
"id": 10,
"component_code": "SETUP",
"component_name": "Setup Fee",
"calculation_type": "fixed",
"is_active": true,
"base_amount": 2500,
"start_date": "2026-08-31",
"end_date": null
}
]
}{
"message": "Pricing plan not found"
}| Status | Meaning |
|---|---|
| 200 | The plan is returned. |
| 404 | No pricing plan with that id. |
| 500 | Unexpected error. |
What comes back when a plan is refused.
| Status | When | Response |
|---|---|---|
| 422 | validation failed | 422 Unprocessable |
| 422 | code already in use | 422 Unprocessable |
| 422 | no fixed component on the plan | 422 Unprocessable |
| 404 | plan or component not found | 404 Not Found |
| 500 | unexpected error | 500 Server Error |
| When | Message |
|---|---|
bad plan_type | The plan type must be standard. |
| timestamp instead of a date | The effective date field must match the format Y-m-d. |
expiration_date before effective_date | The expiration date must come after the effective date. |
component end_date before its start_date | A component end date must come after its start date. |
| no components | The components field is required. |
Set which pricing plans a product is on.
Sets which pricing plans a product is on.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | Id of the product — the id from POST /products. |
| Field | Type | Required | Description |
|---|---|---|---|
pricing_plan_ids | array of integers | Required | The plans the product should end up on — ids from POST /pricing-plans. May be empty. |
{
"pricing_plan_ids": [6]
}curl -X POST \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/products/3210/pricing-plans' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"pricing_plan_ids": [6]
}'{
"pricing_plan_ids": [5, 6]
}{
"pricing_plan_ids": []
}422, so a forgotten field can never unlink everything by accident.{
"message": "Pricing plans linked successfully"
}| Status | Meaning |
|---|---|
| 200 | The plans are linked. |
| 422 | The field is missing or the wrong type, a plan id does not exist, or the product does not exist. |
| 404 | Product or plan not found. |
| 500 | Unexpected error. |
The bodies for each of those are in Attach Plan Errors.
Which plans a product is on.
Returns the pricing plans a product is on. This is how you check what POST /products/:id/pricing-plans left the product with.
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Required | Id of the product — the id from POST /products. |
curl -X GET \
'https://services.ap.mochatechnologies.com/quickbill/api/v1/products/3210/pricing-plans' \
-H "X-Tenant: $MOCHA_TENANT" \
-H "API Key: $MOCHA_API_KEY"The plans come back inside data, each with its components expanded — the same shape GET /pricing-plans returns, just narrowed to this one product.
{
"data": [
{
"id": 5,
"name": "Standard Monthly Plan",
"code": "STDMON",
"description": null,
"plan_type": "standard",
"effective_date": "2026-08-31",
"expiration_date": null,
"price": 2500,
"is_active": true,
"components": [
{
"id": 10,
"component_code": "SETUP",
"component_name": "Setup Fee",
"calculation_type": "fixed",
"is_active": true,
"base_amount": 2500,
"start_date": "2026-08-31",
"end_date": null
}
]
}
]
}start_date and end_date but no pricing_plans key.| Status | Meaning |
|---|---|
| 200 | The plans are returned. A product on no plans is an empty data array, not an error. |
| 404 | No product with that id. |
| 500 | Unexpected error. |
What comes back when a link is refused.
| Status | When | Response |
|---|---|---|
| 422 | field missing or wrong type | See Request validation below. |
| 422 | a plan id does not exist | See A plan id that does not exist below. |
| 422 | the product does not exist | See A product id that does not exist below. |
| 404 | product or plan not found | 404 Not Found |
| 500 | unexpected error | 500 Server Error |
| When | Response |
|---|---|
pricing_plan_ids left out | 422 Unprocessable |
| not an array | 422 Unprocessable |
| an entry is not an integer | 422 Unprocessable |
{
"message": "The selected pricing plan (574) is invalid.",
"errors": {
"pricing_plan_ids.0": ["The selected pricing plan (574) is invalid."]
}
}{
"message": "The product does not exist."
}There is no errors here because the product id is not a field you send — it is in the path. Naming it would point you at something you never wrote.
The messages are run together, and errors names each field it can.
{
"message": "The selected pricing plan (574) is invalid. The product does not exist.",
"errors": {
"pricing_plan_ids.0": ["The selected pricing plan (574) is invalid."]
}
}