When I write checks through the Intuit .Net SDK, I'm getting the following error saying
"Error validating Detail Line 1, Account ID or Item ID Field:Please specify an Item ID or an Account ID."
API Documentation also saying that Line (CheckLine) should have Account ID or Item ID. But there aren't any Property for Account ID or Item Id in CheckLine Object. Could you please tell me how to assign account Id or Item ID for the CheckLine object.
sample code:
Dim line = New Qbo.CheckLine(1) {}
line(0) = New Qbo.CheckLine() With { _
.Amount = 20,
.BillableStatus = Qbo.BillableStatusEnum.NotBillable,
.AmountSpecified = True
}