GET
/
quickbooks-desktop
/
account-tax-lines
import Conductor from 'conductor-node';

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

async function main() {
  const accountTaxLines = await client.qbd.accountTaxLines.list({
    conductorEndUserId: 'end_usr_1234567abcdefg',
  });

  console.log(accountTaxLines.data);
}

main();
{
  "objectType": "list",
  "url": "/v1/quickbooks-desktop/account-tax-lines",
  "data": [
    {
      "taxLineId": 123,
      "taxLineName": "State Sales Tax"
    }
  ]
}

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 EndUser to receive this request (e.g., "Conductor-End-User-Id: {{END_USER_ID}}").

Example:

"end_usr_1234567abcdefg"

Response

200 - application/json
Returns a list of account tax lines.
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/account-tax-lines"

data
object[]
required

The array of account tax lines.