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

I'm on version: `^6.0` and I'm trying to get all `RecurringTransaction`: ``` $dataService = (new QuickbooksClient()) ->getDataService(); $results = $dataService->Query('SELECT * FROM RecurringTransaction'); ``` Then an exception is thrown: ```...

function moved to Psr7\Message::toString() fixes #475 #493

`throw new SdkException("A networking error occurs during Guzzle client request:" . Psr7\str($e->getResponse()));`

Instead it should somehow depend on `DataService::isThrownExceptionOnError()` and not remain default throw exceptions

When using FindById to get a an instance of QuickBooksOnline\API\Data\IPPBill, the AttachableRef object is empty, even though I can see there's an attachment in the Quickbooks sandbox. Do I have...

I'm calling the Bill and/or VendorCredit facade like so: ``` Bill::create([ [ 'DocNumber' => '12345678', 'TxnDate' => 2023-12-06, 'Line' => [ 'DetailType' => 'AccountBasedExpenseLineDetail', 'Amount' => 23.12, 'AccountBasedExpenseLineDetail' => [...

When querying Attachable objects, in the response the XML "type" attribute of EntityRef is not parse by DataService.php:1027 and so the IPPAttachable.AttachableRef.EntityRef.type is not defined. There is no way to...

While response models with children use the correct class with namespace as they are checked against the namespace: https://github.com/intuit/QuickBooks-V3-PHP-SDK/blob/a4039a8257633ed1481dfe1e50a7881016fa0b1d/src/XSD2PHP/src/com/mikebevz/xsd2php/Bind.php#L156C51-L156C51 This code is missing here for the case where it doesn't...

I'm trying to create an invoice with "DeliveryInfo" set to "Email", as is described in the API docs. This is the line I'm adding to my code that causes an...