MadelineProtoDocs/docs/API_docs/methods/payments.getBankCardData.md
2020-03-06 13:09:28 +01:00

1.1 KiB

title description image redirect_from
payments.getBankCardData payments.getBankCardData parameters, return type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/payments_getBankCardData.html

Method: payments.getBankCardData

Back to methods index

Parameters:

Name Type Required
number string Yes

Return type: payments.BankCardData

Can bots use this method: YES

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$payments.BankCardData = $MadelineProto->payments->getBankCardData(['number' => 'string', ]);

Or, if you're into Lua:

payments.BankCardData = payments.getBankCardData({number='string', })