MadelineProtoDocs/docs/API_docs/methods/payments.getBankCardData.md

47 lines
1.2 KiB
Markdown
Raw Normal View History

2020-03-06 13:09:28 +01:00
---
title: payments.getBankCardData
2020-06-16 17:50:25 +02:00
description: Get info about a credit card
2020-03-06 13:09:28 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/methods/payments_getBankCardData.html
---
2020-06-16 17:50:25 +02:00
# Method: payments.getBankCardData
2020-03-06 13:09:28 +01:00
[Back to methods index](index.md)
2020-06-16 17:50:25 +02:00
Get info about a credit card
2020-03-06 13:09:28 +01:00
### Parameters:
2020-06-16 17:50:25 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|number|[string](../types/string.md) | Credit card number | Yes|
2020-03-06 13:09:28 +01:00
### Return type: [payments.BankCardData](../types/payments.BankCardData.md)
2020-06-16 17:50:25 +02:00
### Can bots use this method: **NO**
2020-03-06 13:09:28 +01:00
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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:
```lua
payments.BankCardData = payments.getBankCardData({number='string', })
```