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 am attempting to set the tracking option on a line item for an invoice. Here's what I've currently got: ```php public function tracking() { /** @var PrivateApplication $xero */...

https://symfony.com/blog/twig-sandbox-information-disclosure Can you please bump your require version.

I am trying to allocate a payment to an invoice and bank account, I can allocate the payment to the invoice but cannot find how to get the Account property,...

Pretty simple operator: ```php $contact = $xero->loadByGUID(Contact::class, 'GUID'); echo $contact->getWebsite(); // shows http://google.com value from Xero $contact->setWebsite('http://update.com'); $contact->save(); echo $contact->getWebsite(); // shows http://update.com $fresh = $xero->loadByGUID(Contact::class, 'GUID'); echo $contact->getWebsite(); //...

Hi, Is there a way when adding line items to an existing invoice (which already has line items) to add them to the end of the invoice instead of them...

I need to get this working this week, so am hacking a set of models together. Firstly I'm calling it PayroleGB, and not PayrollUK as some of the docs hint...

I am trying to send a receipt (bill/ expense) as a draft to the Xero, but what ever I try and do, I am getting an error. Basically, I want...

When I create invoice in browser, my item with code 1006 and GST tax of 10% is correctly created: ![image](https://user-images.githubusercontent.com/1964158/53838330-12d2e980-3f95-11e9-87ed-e46f93596385.png) I.e. I pick 1006 and browser puts the tax. All...

Hi I am using your plugin to retrieve Activity Statements from Xero's API. https://developer.xero.com/documentation/api/reports#BASReport But unfortunately, it does not play nicely. I can open a PR to get this working...

Anyone knows how to delete the single record or an object of the particular record like Contact Person from contact. Please Help!