Mark invoices as paid
This guide walks through how to record payments against invoices in Tabs. Use this when a customer pays outside of a connected payment processor—for example, by check, wire transfer, or ACH initiated from the customer’s bank.
If you use Stripe or Plaid, Tabs reconciles payments automatically and you don’t need to record them manually.
Step 1: Find the invoice
Fetch the customer’s invoices to confirm the invoice is in the SENT status before recording a payment against it.
Tabs returns a paginated list of invoices for that customer:
Save the invoice id—you’ll use it as {invoiceId} in the next step.
Tabs accepts payments on invoices in the SENT or PARTIALLY_PAID status. Invoices in any other status (for example, DRAFT or VOID) return an error.
Step 2: Record the payment
Call the payments endpoint to record that the payment was received. Tabs records the payment for the remaining balance amount and syncs it to your connected ERP.
Tabs marks the invoice as PAID and creates a corresponding payment record in your ERP.
Step 3: Take additional invoice actions
Beyond recording payments, you can take other actions on invoices using the actions endpoint:
Send a payment reminder
Send a reminder email to the customer’s billing contact:
Mark an invoice as sent off Tabs
Record that the invoice was sent to the customer through a channel outside of Tabs (for example, emailed manually or sent through another system):
Retrieve payments
To list all payments across customers, use the global payments endpoint:
Filter by invoice, customer, or status using the filter query parameter:
Supported filter fields: receivedAt, status, type, invoiceId, customerId.
Next steps
- Set up automatic payment collection in Stripe or Plaid
- Match payments to invoices
- Create and apply credit memos

