MadelineProtoDocs/docs/API_docs/methods/payments_sendPaymentForm.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

2.0 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 Description Required
msg_id int Message ID Yes
requested_info_id string ID of requested info Optional
shipping_option_id string Shipping option ID Optional
credentials InputPaymentCredentials Payment credentials Yes

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