How to add invoice or case sale quickbooks api v3.0
How do I add an invoice or sales receipt using QuickBooks API Rest v3? .NET preferred. I was interested in v2 earlier, but apparently this will be replaced soon. I can't find any sample code in .NET to add a sales receipt or invoice for version 3. A simple example with minimal data provided would be appreciated.
+1
source to share
1 answer
You can try the following piece of code.
public void AddInvoice()
{
OAuthRequestValidator reqValidator = new OAuthRequestValidator(accessToken, accessTokenSecret, consumerKey, consumerKeySecret);
ServiceContext context = new ServiceContext(realmId, IntuitServicesType.QBO, reqValidator);
Invoice added = Helper.Add<Invoice>(qboContextoAuth, CreateInvoice(qboContextoAuth));
}
internal Invoice CreateInvoice(ServiceContext context)
{
Customer customer = FindorAdd<Customer>(context, new Customer());
TaxCode taxCode = FindorAdd<TaxCode>(context, new TaxCode());
Account account = FindOrADDAccount(context, AccountTypeEnum.AccountsReceivable, AccountClassificationEnum.Liability);
Invoice invoice = new Invoice();
invoice.Deposit = new Decimal(0.00);
invoice.DepositSpecified = true;
invoice.AllowIPNPayment = false;
invoice.AllowIPNPaymentSpecified = true;
invoice.CustomerRef = new ReferenceType()
{
name = customer.DisplayName,
Value = customer.Id
};
invoice.DueDate = DateTime.UtcNow.Date;
invoice.DueDateSpecified = true;
invoice.GlobalTaxCalculation = GlobalTaxCalculationEnum.TaxExcluded;
invoice.GlobalTaxCalculationSpecified = true;
invoice.TotalAmt = new Decimal(0.00);
invoice.TotalAmtSpecified = true;
invoice.ApplyTaxAfterDiscount = false;
invoice.ApplyTaxAfterDiscountSpecified = true;
invoice.PrintStatus = PrintStatusEnum.NotSet;
invoice.PrintStatusSpecified = true;
invoice.EmailStatus = EmailStatusEnum.NotSet;
invoice.EmailStatusSpecified = true;
invoice.ARAccountRef = new ReferenceType()
{
type = Enum.GetName(typeof(objectNameEnumType), objectNameEnumType.Account),
name = "Account Receivable",
Value = "QB:37"
};
invoice.Balance = new Decimal(0.00);
invoice.BalanceSpecified = true;
List<Line> lineList = new List<Line>();
Line line = new Line();
line.Description = "Description";
line.Amount = new Decimal(100.00);
line.AmountSpecified = true;
line.DetailType = LineDetailTypeEnum.DescriptionOnly;
line.DetailTypeSpecified = true;
lineList.Add(line);
invoice.Line = lineList.ToArray();
TxnTaxDetail txnTaxDetail = new TxnTaxDetail();
txnTaxDetail.DefaultTaxCodeRef = new ReferenceType()
{
Value = taxCode.Id,
type = Enum.GetName(typeof(objectNameEnumType), objectNameEnumType.Customer),
name = taxCode.Name
};
txnTaxDetail.TotalTax = new Decimal(0.00);
txnTaxDetail.TotalTaxSpecified = true;
return invoice;
}
V3 Invoice Doc Ref - https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v3/030_entity_services_reference/invoice Hope you find this helpful.
thank
+4
source to share