BillLinkedTransactions
Enables querying of transactions linked to specific QuickBooks Bills, such as related payments or adjustments.
Table Specific Information
Linked transactions are transactions that have been associated with the Bill specified by the BillId column.
Select
By default, SupportEnhancedSQL is set to true, and the following will be honored if present. Other filters will be executed client side. If SupportEnhancedSQL is set to false, only the following filters will be honored.
QuickBooks allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns can typically be used with only the equals or = comparison. The available columns for Bills are Id, Date, ReferenceNumber, VendorName, VendorId, AccountsPayable, AccountsPayableId, IsPaid, and TimeModified. TimeModified and Date may be used with the >, >=, <, <=, or = conditions and may be used twice to specify a range. ReferenceNumber may be used with the = or LIKE conditions to establish a starts-with, ends-with, or contains syntax. For example:
SELECT * FROM Bills WHERE TimeModified > '1/1/2011' AND TimeModified < '2/1/2011' AND ReferenceNumber LIKE '%12345%'
Columns
Name | Type | References | Description |
ID [KEY] | String | A unique identifier for the linked transaction, formatted as BillId|ItemLineId, combining the bill and line item information. | |
BillId | String |
Bills.ID | The unique identifier for the bill associated with this linked transaction. |
TransactionId | String | The unique identifier for the transaction linked to the bill. | |
TransactionAmount | Decimal | The monetary amount of the linked transaction. | |
TransactionDate | Date | The date when the linked transaction occurred. | |
TransactionReferenceNumber | String | The reference number for the linked transaction, used for tracking and identification. | |
TransactionType | String | The type of the linked transaction, such as PurchaseOrder or Invoice. | |
TransactionLinkType | String | The relationship type between the bill and the linked transaction, such as 'AppliedTo' or 'ReferencedBy'. | |
TimeModified | Datetime | The timestamp of the last modification made to the bill or linked transaction. | |
TimeCreated | Datetime | The timestamp of when the bill or linked transaction was created. |