Sync permissioned refund receipts data with QuickBooks through Apideck's unified API. One integration, instant access to the governed data your team needs.
In Apideck, this resource is called Refunds (API: refunds)
Full CRUD support available through our unified API
Fields available for QuickBooks Refund Receipts
idnumbercustomercurrencycurrency_ratetax_inclusivetotal_amounttotal_taxrefund_datestatuspayment_methodpayment_method_referencepayment_method_idaccountline_items+13 moreSample response structure for refund receipts
{
"id": "12345",
"number": 10,
"customer": {
"id": "12345",
"display_id": "CUST-001",
"display_name": "Acme Corp",
"company_name": "Acme Corporation"
},
"currency": "USD",
"currency_rate": 100,
"tax_inclusive": "string",
"total_amount": 100,
"total_tax": 100,
"refund_date": "2024-01-15",
"status": "active",
"payment_method": "string",
"payment_method_reference": "string",
"payment_method_id": "12345",
"account": {
"id": "12345"
},
"line_items
...Start syncing QuickBooks refund receipts in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List refund receipts from QuickBooks
const result = await apideck.accounting.refunds.list({
serviceId: 'quickbooks'
})
for await (const page of result) {
console.log(page)
}
// Returns unified refund receipts dataExplore more QuickBooks resources available through Apideck's unified API
We build and maintain connectors, so you don't have to. View our full list of Accounting connectors.
Missing a connector? We're able to add new connectors.
Build QuickBooks integrations in your favorite language with our official SDKs.
Build QuickBooks integrations with the official Node.js SDK.
Build QuickBooks integrations with the official TypeScript SDK.
Build QuickBooks integrations with the official PHP SDK.
Build QuickBooks integrations with the official .NET.
Build QuickBooks integrations with the official Python SDK.
Build QuickBooks integrations with the official Java SDK.
Build QuickBooks integrations with the official Go SDK.