Skip to main content
GET
/
quickbooks-desktop
/
payments-to-deposit
JavaScript
import Conductor from 'conductor-node';

const conductor = new Conductor({
  apiKey: process.env['CONDUCTOR_SECRET_KEY'], // This is the default and can be omitted
});

const paymentsToDeposits = await conductor.qbd.paymentsToDeposit.list({
  conductorEndUserId: 'end_usr_1234567abcdefg',
});

console.log(paymentsToDeposits.data);
{
  "objectType": "list",
  "url": "/v1/quickbooks-desktop/payments-to-deposit",
  "data": [
    {
      "paymentTransactionId": "123ABC-1234567890",
      "paymentTransactionLineId": "456DEF-1234567890",
      "transactionType": "invoice",
      "customer": {
        "id": "80000001-1234567890",
        "fullName": "Acme Corporation"
      },
      "transactionDate": "2024-10-01",
      "refNumber": "PAYMENT-1234",
      "amount": "1000.00",
      "currency": {
        "id": "80000001-1234567890",
        "fullName": "USD"
      },
      "exchangeRate": 1.2345,
      "amountInHomeCurrency": "1234.56"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.conductor.is/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Conductor secret key using Bearer auth (e.g., "Authorization: Bearer {{YOUR_SECRET_KEY}}").

Headers

Conductor-End-User-Id
string
required

The ID of the End-User to receive this request.

Example:

"end_usr_1234567abcdefg"

Response

200 - application/json

Returns a list of payments to deposit.

objectType
string
required

The type of object. This value is always "list".

Allowed value: "list"
Example:

"list"

url
string
required

The endpoint URL where this list can be accessed.

Example:

"/v1/quickbooks-desktop/payments-to-deposit"

data
The Payment To Deposit object · object[]
required

The array of payments to deposit.