We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When filtering quotes (and other data), what is the syntax as it does work as per the contacts example?
For example: $invoices = $xero->invoices()->where('InvoiceNumber', 9871)->get();
$invoices = $xero->invoices()->where('InvoiceNumber', 9871)->get();
Renders the following: /api.xro/2.0/Invoices?where=InvoiceNumber%3D%3D9871
Ultimately this should be: /api.xro/2.0/Invoices?InvoiceNumber=9871
The text was updated successfully, but these errors were encountered:
I've been able to get this to work, but it does look like a 'hack'. Is there a better way?
$xero->invoices()->find('?InvoiceNumber=' . $request->get('InvoiceNumber'));
This renders the following url: /api.xro/2.0/Invoices/?InvoiceNumber=9871
Sorry, something went wrong.
No branches or pull requests
When filtering quotes (and other data), what is the syntax as it does work as per the contacts example?
For example:
$invoices = $xero->invoices()->where('InvoiceNumber', 9871)->get();
Renders the following:
/api.xro/2.0/Invoices?where=InvoiceNumber%3D%3D9871
Ultimately this should be:
/api.xro/2.0/Invoices?InvoiceNumber=9871
The text was updated successfully, but these errors were encountered: