Automate your receivables with Zapier and Make (6000+ apps including Google Sheets), or build directly on our REST API and webhooks. Trigger on payments and reminders; create dues and send WhatsApp reminders from anywhere.
Connect GetPaidly to Gmail, Slack, Google Sheets, QuickBooks and thousands more - no code. Use GetPaidly events as triggers and API calls as actions.
Build visual multi-step scenarios. Same triggers and actions as Zapier, with branching and filters for more complex flows.
Two-way sync through Zapier or Make: new paid dues flow into a sheet, and rows you add can create dues back in GetPaidly.
Delivered in real time via webhooks. Every delivery is logged and retried automatically, so no event is lost.
transaction.paida customer pays a duepayment.receivedany payment lands (subscription or due)reminder.senta WhatsApp reminder goes outtransaction.createda new due is addedcontact.createda new customer is addedPOST /v1/transactionssends the pay link automaticallyPOST /v1/transactions/:id/mark-paidPOST /v1/transactions/:id/remindWhatsAppPOST /v1/contactsGET /v1/transactions, /summarypolling triggersNo Zapier needed. This runs entirely in your own Google account and costs nothing.
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheets()[0];
if (sheet.getLastRow() === 0) {
sheet.appendRow(['Time', 'Event', 'Customer', 'Amount', 'Status', 'Transaction ID']);
}
var body = JSON.parse(e.postData.contents);
var d = body.data || {};
sheet.appendRow([
body.timestamp || new Date().toISOString(),
body.event || '',
d.contact_name || d.name || '',
d.amount_paise != null ? (d.amount_paise / 100) : '',
d.status || '',
d.id || ''
]);
return ContentService.createTextOutput('ok');
}The first row becomes headers automatically. Each event adds a row with its time, type, customer, amount and status.
Create your API key and register webhooks in the dashboard API tab. Prefer to build directly? Read the full API reference.
Zapier and Make apps are rolling out - if you want early access to the GetPaidly connector, mention it on live chat or WhatsApp and we will set you up. Everything here works today directly via the REST API and webhooks.