Mangopay / mangopay2-php-sdk

PHP SDK for MANGOPAY
https://packagist.org/packages/mangopay/php-sdk-v2
MIT License
122 stars 133 forks source link

List of bank accounts #456

Closed clicok closed 3 years ago

clicok commented 3 years ago

Hello, How to extract a user's account list please? The example code on the following page seems to not work: https://docs.mangopay.com/endpoints/v2.01/bank-accounts#e28_list-bank-accounts-for-a-user Thanks in advance

mangomaxoasis commented 3 years ago

Hi @clicok , If you run the example code in the doc with the default settings you get na example. image Let me know of further issues, Max

clicok commented 3 years ago

The problem is the PHP code, is your example complete?

$UserId = 8494514;
$Page = 1;
$Per_Page = 25;
$Active = "true";
$Sort = "CreationDate:DESC";
$ = $Api->->($UserId, $Page, $Per_Page, $Active, $Sort);

$ = $Api->-> ?

mangomaxoasis commented 3 years ago

OK, to clarify you are making the 'list user's bank account' via the SDK?