Orders & Transactions
Orders and transactions are the payment records in your SMBcrm account. Use them to reconcile revenue, look up a customer’s purchases, and audit individual charges. Both are read-only here.
Base URL: https://services.smbcrm.com · Version header: v3 ·
Scopes: payments/orders.readonly, payments/transactions.readonly. See Scopes.
Orders
Section titled “Orders”altId is required. Filter with paymentStatus (paid, unpaid, refunded, partially_paid), contactId, startAt/endAt, and page with limit/offset.
curl "https://services.smbcrm.com/payments/orders?altId=<location_id>&altType=location&limit=20" \ -H "Authorization: Bearer <token>" \ -H "Version: v3"{ "data": [ { "_id": "<order_id>", "altId": "<location_id>", "altType": "location", "contactId": "<contact_id>", "contactName": "Jordan Lee", "amount": 149, "currency": "USD", "status": "completed", "createdAt": "2026-07-08T15:04:00.000Z" } ], "totalCount": 1}curl "https://services.smbcrm.com/payments/orders/<order_id>?altId=<location_id>&altType=location" \ -H "Authorization: Bearer <token>" \ -H "Version: v3"{ "_id": "<order_id>", "altId": "<location_id>", "altType": "location", "contactId": "<contact_id>", "amount": 149, "currency": "USD", "status": "completed", "amountSummary": { "subtotal": 149, "discount": 0 }, "source": { "type": "funnel", "id": "<funnel_id>", "name": "Checkout" }, "createdAt": "2026-07-08T15:04:00.000Z"}Transactions
Section titled “Transactions”altId and altType are both required. Narrow with contactId, subscriptionId, startAt/endAt, and page with limit/offset.
curl "https://services.smbcrm.com/payments/transactions?altId=<location_id>&altType=location&limit=20" \ -H "Authorization: Bearer <token>" \ -H "Version: v3"{ "data": [ { "_id": "<transaction_id>", "altId": "<location_id>", "altType": "location", "contactId": "<contact_id>", "amount": 149, "currency": "USD", "entityType": "invoice", "entityId": "<invoice_id>", "amountRefunded": 0, "createdAt": "2026-07-08T15:04:00.000Z" } ], "totalCount": 1}curl "https://services.smbcrm.com/payments/transactions/<transaction_id>?altId=<location_id>&altType=location" \ -H "Authorization: Bearer <token>" \ -H "Version: v3"Related
Section titled “Related”- Payments overview — all payment resources.
- Subscriptions — recurring payment records.
- Invoices & Estimates — bill customers directly.
