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
Looks like it's not forming the proper URL to only retrieve invoices for a specific account. Here is my patch to fix the issue.
public static function getForAccount($accountCode, $params = null, $client = null) { $list = new Recurly_InvoiceList(Recurly_Client::PATH_INVOICES, $client); $loadPath = Recurly_Client::PATH_ACCOUNTS . '/' . $accountCode . Recurly_Client::PATH_INVOICES; $list->_loadFrom($loadPath, $params); return $list; }
The text was updated successfully, but these errors were encountered:
I've recently reported a similar issue with Recurly_SubscriptionList::getForAccount(accountCode) and it was fixed in the latest revision.
Sorry, something went wrong.
I've fixed this issue and submitted it with my pull request: https://github.com/recurly/recurly-client-php/pulls
You can find the source on my forked repository if you need it immediately.
Whoops, looks like they already fixed this issue. Use theirs. :)
Fixed with version 2.0.2. Thanks for reporting it.
Merge pull request #14 from recurly/gs-support_multiple_redemptions_o…
a57f083
…n_account support for multiple redemptions on accounts
No branches or pull requests
Looks like it's not forming the proper URL to only retrieve invoices for a specific account. Here is my patch to fix the issue.
The text was updated successfully, but these errors were encountered: