Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) Quickbooks Create an InvoiceDemonstrates how to create an invoice via the Quickbooks REST API. For more information, see https://www.developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/invoice#create-an-invoice
#include <C_CkJsonObject.h> #include <C_CkRest.h> #include <C_CkStringBuilder.h> void ChilkatSample(void) { HCkJsonObject jsonToken; BOOL success; HCkRest rest; BOOL bTls; int port; BOOL bAutoReconnect; BOOL success; HCkStringBuilder sbAuth; HCkJsonObject jsonReq; HCkStringBuilder sbRequestBody; HCkStringBuilder sbResponseBody; int respStatusCode; HCkJsonObject jsonResponse; int LineNum; const char *Amount; const char *SalesItemLineDetailTaxCodeRefValue; const char *SalesItemLineDetailItemRefName; const char *SalesItemLineDetailItemRefValue; const char *Id; const char *DetailType; const char *DefinitionId; const char *invType; const char *Name; const char *InvoiceDocNumber; const char *InvoiceSyncToken; const char *InvoiceDomain; const char *InvoiceBalance; const char *InvoiceBillAddrCity; const char *InvoiceBillAddrLine1; const char *InvoiceBillAddrPostalCode; const char *InvoiceBillAddrLat; const char *InvoiceBillAddrLong; const char *InvoiceBillAddrCountrySubDivisionCode; const char *InvoiceBillAddrId; const char *InvoiceTxnDate; const char *InvoiceTotalAmt; const char *InvoiceCustomerRefName; const char *InvoiceCustomerRefValue; const char *InvoiceShipAddrCity; const char *InvoiceShipAddrLine1; const char *InvoiceShipAddrPostalCode; const char *InvoiceShipAddrLat; const char *InvoiceShipAddrLong; const char *InvoiceShipAddrCountrySubDivisionCode; const char *InvoiceShipAddrId; const char *InvoiceDueDate; const char *InvoicePrintStatus; int InvoiceDeposit; BOOL InvoiceSparse; const char *InvoiceEmailStatus; BOOL InvoiceApplyTaxAfterDiscount; const char *InvoiceId; int InvoiceTxnTaxDetailTotalTax; const char *InvoiceMetaDataCreateTime; const char *InvoiceMetaDataLastUpdatedTime; const char *time; int i; int count_i; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // First get our previously obtained OAuth2 access token. jsonToken = CkJsonObject_Create(); success = CkJsonObject_LoadFile(jsonToken,"qa_data/tokens/qb-access-token.json"); rest = CkRest_Create(); // Connect to the REST server. bTls = TRUE; port = 443; bAutoReconnect = TRUE; success = CkRest_Connect(rest,"sandbox-quickbooks.api.intuit.com",port,bTls,bAutoReconnect); sbAuth = CkStringBuilder_Create(); CkStringBuilder_Append(sbAuth,"Bearer "); CkStringBuilder_Append(sbAuth,CkJsonObject_stringOf(jsonToken,"access_token")); CkRest_putAuthorization(rest,CkStringBuilder_getAsString(sbAuth)); // -------------------------------------------------------------------------- // Note: The above code to setup the initial REST connection // can be done once. After connecting, any number of REST calls can be made. // If the connection is lost, the next REST method call will automatically // reconnect if needed. // -------------------------------------------------------------------------- // Create the following JSON: // { // "Line": [ // { // "DetailType": "SalesItemLineDetail", // "Amount": 100.0, // "SalesItemLineDetail": { // "ItemRef": { // "name": "Services", // "value": "1" // } // } // } // ], // "CustomerRef": { // "value": "1" // } // } // // Use the this online tool to generate the code from sample JSON: // Generate Code to Create JSON jsonReq = CkJsonObject_Create(); CkJsonObject_UpdateString(jsonReq,"Line[0].DetailType","SalesItemLineDetail"); CkJsonObject_UpdateNumber(jsonReq,"Line[0].Amount","100.0"); CkJsonObject_UpdateString(jsonReq,"Line[0].SalesItemLineDetail.ItemRef.name","Services"); CkJsonObject_UpdateString(jsonReq,"Line[0].SalesItemLineDetail.ItemRef.value","1"); CkJsonObject_UpdateString(jsonReq,"CustomerRef.value","1"); sbRequestBody = CkStringBuilder_Create(); CkJsonObject_EmitSb(jsonReq,sbRequestBody); CkRest_AddHeader(rest,"Content-Type","application/json"); CkRest_AddHeader(rest,"Accept","application/json"); CkRest_putAllowHeaderFolding(rest,FALSE); sbResponseBody = CkStringBuilder_Create(); success = CkRest_FullRequestSb(rest,"POST","/v3/company/<realmID>/invoice",sbRequestBody,sbResponseBody); if (success != TRUE) { printf("%s\n",CkRest_lastErrorText(rest)); CkJsonObject_Dispose(jsonToken); CkRest_Dispose(rest); CkStringBuilder_Dispose(sbAuth); CkJsonObject_Dispose(jsonReq); CkStringBuilder_Dispose(sbRequestBody); CkStringBuilder_Dispose(sbResponseBody); return; } respStatusCode = CkRest_getResponseStatusCode(rest); // Success is indicated by a 200 response status code. printf("response status code = %d\n",respStatusCode); jsonResponse = CkJsonObject_Create(); CkJsonObject_LoadSb(jsonResponse,sbResponseBody); CkJsonObject_putEmitCompact(jsonResponse,FALSE); printf("%s\n",CkJsonObject_emit(jsonResponse)); if (CkRest_getResponseStatusCode(rest) != 200) { printf("Failed.\n"); CkJsonObject_Dispose(jsonToken); CkRest_Dispose(rest); CkStringBuilder_Dispose(sbAuth); CkJsonObject_Dispose(jsonReq); CkStringBuilder_Dispose(sbRequestBody); CkStringBuilder_Dispose(sbResponseBody); CkJsonObject_Dispose(jsonResponse); return; } // Sample output... // (See the parsing code below..) // // Use the this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // { // "Invoice": { // "DocNumber": "1069", // "SyncToken": "0", // "domain": "QBO", // "Balance": 100.0, // "BillAddr": { // "City": "Bayshore", // "Line1": "4581 Finch St.", // "PostalCode": "94326", // "Lat": "INVALID", // "Long": "INVALID", // "CountrySubDivisionCode": "CA", // "Id": "2" // }, // "TxnDate": "2015-07-24", // "TotalAmt": 100.0, // "CustomerRef": { // "name": "Amy's Bird Sanctuary", // "value": "1" // }, // "ShipAddr": { // "City": "Bayshore", // "Line1": "4581 Finch St.", // "PostalCode": "94326", // "Lat": "INVALID", // "Long": "INVALID", // "CountrySubDivisionCode": "CA", // "Id": "109" // }, // "LinkedTxn": [ // ], // "DueDate": "2015-08-23", // "PrintStatus": "NeedToPrint", // "Deposit": 0, // "sparse": false, // "EmailStatus": "NotSet", // "Line": [ // { // "LineNum": 1, // "Amount": 100.0, // "SalesItemLineDetail": { // "TaxCodeRef": { // "value": "NON" // }, // "ItemRef": { // "name": "Services", // "value": "1" // } // }, // "Id": "1", // "DetailType": "SalesItemLineDetail" // }, // { // "DetailType": "SubTotalLineDetail", // "Amount": 100.0, // "SubTotalLineDetail": {} // } // ], // "ApplyTaxAfterDiscount": false, // "CustomField": [ // { // "DefinitionId": "1", // "Type": "StringType", // "Name": "Crew #" // } // ], // "Id": "238", // "TxnTaxDetail": { // "TotalTax": 0 // }, // "MetaData": { // "CreateTime": "2015-07-24T10:33:39-07:00", // "LastUpdatedTime": "2015-07-24T10:33:39-07:00" // } // }, // "time": "2015-07-24T10:33:39.11-07:00" // } // // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat. // See this example explaining how this memory should be used: const char * functions. InvoiceDocNumber = CkJsonObject_stringOf(jsonResponse,"Invoice.DocNumber"); InvoiceSyncToken = CkJsonObject_stringOf(jsonResponse,"Invoice.SyncToken"); InvoiceDomain = CkJsonObject_stringOf(jsonResponse,"Invoice.domain"); InvoiceBalance = CkJsonObject_stringOf(jsonResponse,"Invoice.Balance"); InvoiceBillAddrCity = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.City"); InvoiceBillAddrLine1 = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.Line1"); InvoiceBillAddrPostalCode = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.PostalCode"); InvoiceBillAddrLat = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.Lat"); InvoiceBillAddrLong = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.Long"); InvoiceBillAddrCountrySubDivisionCode = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.CountrySubDivisionCode"); InvoiceBillAddrId = CkJsonObject_stringOf(jsonResponse,"Invoice.BillAddr.Id"); InvoiceTxnDate = CkJsonObject_stringOf(jsonResponse,"Invoice.TxnDate"); InvoiceTotalAmt = CkJsonObject_stringOf(jsonResponse,"Invoice.TotalAmt"); InvoiceCustomerRefName = CkJsonObject_stringOf(jsonResponse,"Invoice.CustomerRef.name"); InvoiceCustomerRefValue = CkJsonObject_stringOf(jsonResponse,"Invoice.CustomerRef.value"); InvoiceShipAddrCity = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.City"); InvoiceShipAddrLine1 = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.Line1"); InvoiceShipAddrPostalCode = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.PostalCode"); InvoiceShipAddrLat = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.Lat"); InvoiceShipAddrLong = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.Long"); InvoiceShipAddrCountrySubDivisionCode = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.CountrySubDivisionCode"); InvoiceShipAddrId = CkJsonObject_stringOf(jsonResponse,"Invoice.ShipAddr.Id"); InvoiceDueDate = CkJsonObject_stringOf(jsonResponse,"Invoice.DueDate"); InvoicePrintStatus = CkJsonObject_stringOf(jsonResponse,"Invoice.PrintStatus"); InvoiceDeposit = CkJsonObject_IntOf(jsonResponse,"Invoice.Deposit"); InvoiceSparse = CkJsonObject_BoolOf(jsonResponse,"Invoice.sparse"); InvoiceEmailStatus = CkJsonObject_stringOf(jsonResponse,"Invoice.EmailStatus"); InvoiceApplyTaxAfterDiscount = CkJsonObject_BoolOf(jsonResponse,"Invoice.ApplyTaxAfterDiscount"); InvoiceId = CkJsonObject_stringOf(jsonResponse,"Invoice.Id"); InvoiceTxnTaxDetailTotalTax = CkJsonObject_IntOf(jsonResponse,"Invoice.TxnTaxDetail.TotalTax"); InvoiceMetaDataCreateTime = CkJsonObject_stringOf(jsonResponse,"Invoice.MetaData.CreateTime"); InvoiceMetaDataLastUpdatedTime = CkJsonObject_stringOf(jsonResponse,"Invoice.MetaData.LastUpdatedTime"); time = CkJsonObject_stringOf(jsonResponse,"time"); i = 0; count_i = CkJsonObject_SizeOfArray(jsonResponse,"Invoice.LinkedTxn"); while (i < count_i) { CkJsonObject_putI(jsonResponse,i); i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(jsonResponse,"Invoice.Line"); while (i < count_i) { CkJsonObject_putI(jsonResponse,i); LineNum = CkJsonObject_IntOf(jsonResponse,"Invoice.Line[i].LineNum"); Amount = CkJsonObject_stringOf(jsonResponse,"Invoice.Line[i].Amount"); SalesItemLineDetailTaxCodeRefValue = CkJsonObject_stringOf(jsonResponse,"Invoice.Line[i].SalesItemLineDetail.TaxCodeRef.value"); SalesItemLineDetailItemRefName = CkJsonObject_stringOf(jsonResponse,"Invoice.Line[i].SalesItemLineDetail.ItemRef.name"); SalesItemLineDetailItemRefValue = CkJsonObject_stringOf(jsonResponse,"Invoice.Line[i].SalesItemLineDetail.ItemRef.value"); Id = CkJsonObject_stringOf(jsonResponse,"Invoice.Line[i].Id"); DetailType = CkJsonObject_stringOf(jsonResponse,"Invoice.Line[i].DetailType"); i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(jsonResponse,"Invoice.CustomField"); while (i < count_i) { CkJsonObject_putI(jsonResponse,i); DefinitionId = CkJsonObject_stringOf(jsonResponse,"Invoice.CustomField[i].DefinitionId"); invType = CkJsonObject_stringOf(jsonResponse,"Invoice.CustomField[i].Type"); Name = CkJsonObject_stringOf(jsonResponse,"Invoice.CustomField[i].Name"); i = i + 1; } CkJsonObject_Dispose(jsonToken); CkRest_Dispose(rest); CkStringBuilder_Dispose(sbAuth); CkJsonObject_Dispose(jsonReq); CkStringBuilder_Dispose(sbRequestBody); CkStringBuilder_Dispose(sbResponseBody); CkJsonObject_Dispose(jsonResponse); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.