MadelineProtoDocs/old_docs/API_docs_v66/methods/payments.sendPaymentForm.md

1.8 KiB

title description image redirect_from
payments.sendPaymentForm Send compiled payment form https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/payments_sendPaymentForm.html

Method: payments.sendPaymentForm

Back to methods index

Send compiled payment form

Parameters:

Name Type Description Required
msg_id int Message ID of form Yes
requested_info_id string ID of saved and validated order info Optional
shipping_option_id string Chosen shipping option ID Optional
credentials InputPaymentCredentials Payment credentials Yes

Return type: payments.PaymentResult

Can bots use this method: NO

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.PaymentResult = $MadelineProto->payments->sendPaymentForm(['msg_id' => int, 'requested_info_id' => 'string', 'shipping_option_id' => 'string', 'credentials' => 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

Code Type Description
400 MESSAGE_ID_INVALID The provided message id is invalid