MadelineProtoDocs/old_docs/API_docs_v81/methods/payments_sendPaymentForm.md
2018-07-12 20:24:55 +02:00

1.9 KiB

title: payments.sendPaymentForm description: Bots only: send payment form image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: payments.sendPaymentForm

Back to methods index

Bots only: send payment form

Parameters:

Name Type Required Description
msg_id int Yes Message ID
requested_info_id string Optional ID of requested info
shipping_option_id string Optional Shipping option ID
credentials InputPaymentCredentials Yes Payment credentials

Return type: payments_PaymentResult

Can bots use this method: NO

MadelineProto Example:

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_PaymentResult = $MadelineProto->payments->sendPaymentForm(['msg_id' => int, 'requested_info_id' => 'string', 'shipping_option_id' => 'string', 'credentials' => InputPaymentCredentials, ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/payments.sendPaymentForm

Parameters:

msg_id - Json encoded int

requested_info_id - Json encoded string

shipping_option_id - Json encoded string

credentials - Json encoded InputPaymentCredentials

Or, if you're into Lua:

payments_PaymentResult = payments.sendPaymentForm({msg_id=int, requested_info_id='string', shipping_option_id='string', credentials=InputPaymentCredentials, })

Errors this method can return:

Error Description
MESSAGE_ID_INVALID The provided message id is invalid