xero-php icon indicating copy to clipboard operation
xero-php copied to clipboard

A php library for the Xero API, with a cleaner OAuth interface and ORM-like abstraction.

Results 117 xero-php issues
Sort by recently updated
recently updated
newest added

I think I might be missing something here but there doesn't seem to be a way to get headers off of the response. I want to be able to preemptively...

I've set the scope of the authorisation and assure my Xero login has access to payroll as admin (without it I was getting permission denied), but now I get 'Not...

Can we have the option to use the summaryOnly option as outlined [here](https://developer.xero.com/documentation/api/accounting/invoices/#get-invoices) as part of the _loadbyGUIDs_ and _loadbyGUID_ functions?

I would like to create a TrackingOption as part of preparing a Demo Company for development. Unfortunately the following code does nothing ```php $option = new TrackingOption($xeroConnection); $option->setName($email); $trackingCategory->addOption($option); $trackingCategory->save();...

I am using BankStatement API to sync bank statements from Xero for a given account ID. It works fine except when there is no content returned from Xero. Please see...

Bump oauth2-xero version

Hi guys, In src/XeroPHP/Remote/Exception/RateLimitExceededException.php file createFromHeaders() function, ``` public static function createFromHeaders($headers) { $headers = array_change_key_case($headers, CASE_LOWER); $problem = isset($headers['x-rate-limit-problem']) ? current($headers['x-rate-limit-problem']) : null; $retryAfter = isset($headers['retry-after']) ? current($headers['retry-after']) :...

Anyone object to `guzzlehttp/psr7` being upgraded?

Hi there, My use case: 1. Instantiate a new `Contact` with only the GUID from my local system 2. Instantiate a new `Invoice`, set the contact (via `setContact()`) 3. Configure...