Skip to content
New issue

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

Pagination does not allow to list more than 10 results in a single request #226

Open
1 of 2 tasks
samihsoylu opened this issue Jul 3, 2022 · 0 comments
Open
1 of 2 tasks

Comments

@samihsoylu
Copy link

samihsoylu commented Jul 3, 2022

Steps to reproduce:

public function getPaymentsFromMonetaryAccount(int $monetaryAccountId, int $count = 50): array
        $pagination = new Pagination();
        $pagination->setCount($count);

        return Payment::listing(
            $monetaryAccountId,
            [],
            $pagination->getUrlParamsCountOnly()
        )->getValue();
}

What should happen:

  1. Return 50 results

What happens:

  1. Returns 10 results

Traceback

SDK version and environment

  • Tested on fd4ad5f
  • Sandbox
  • Production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant