QuickBooks-V3-PHP-SDK icon indicating copy to clipboard operation
QuickBooks-V3-PHP-SDK copied to clipboard

Official PHP SDK for QuickBooks REST API v3.0: https://developer.intuit.com/

Results 116 QuickBooks-V3-PHP-SDK issues
Sort by recently updated
recently updated
newest added

Hello, We tried to pass the value as follow { "BatchItemRequest":[ { "bId":"1001", "operation":"update", "Purchase":{ "domain":"QBO", "PaymentType":"Check", "sparse":"true", "Id":"745", "SyncToken":3, "DocNumber":502, "PrintStatus":"PrintComplete" } } ] } https://{{baseurl}}/v3/company/{{companyid}}/batch?minorversion={{minorversion}} But Print Status...

Composer has issued warnings that my PHP is too uptodate. Can these be ignored. How can I test/view if the SDK has installed?

This appears to be a new issue as we've been Reading closed invoices for years and never encountered this problem. Reading or querying an invoice that is past the closing...

When using the default cURL subsystem the response is correctly handled by the SDK Fault Handler for clients to consume as documented. But when using Guzzle subsystem by calling `$dataService->setClientName('guzzle')`...

PHP 8.1 prohibits passing nulls to internal function arguments that don't expect null. This causes deprecations like these: ``` [2022-04-29 00:52:47] pipeline.WARNING: http_build_query(): Passing null to parameter #2 ($numeric_prefix) of...

I can create an item and include every field I need except Class. The API Documentation at QB says it is "ClassRef": https://developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/item#the-item-object In including API\Facades\IPPClass I can set a...

Noticed there is no **PaymentMethod** facade implementation in the codebase so I provided one. Please review and merge. Thank you.

Unknown Error Type [8192]: strlen(): Passing null to parameter #1 ($string) of type string is deprecated /Core/HttpClients/SyncRestHandler.php(267) set null to "" and it pushes through ok

$dataService = DataService::Configure( [ 'auth_mode' => 'oauth2', 'ClientID' => $list['clientID'], 'ClientSecret' => $list['clientSecret'], 'RedirectURI' => "XXXXXX", 'scope' => "com.intuit.quickbooks.payment com.intuit.quickbooks.accounting", 'state' => $list['stat'], 'baseUrl' => "Development", ] ); $OAuth2LoginHelper =...