1.7 KiB
1.7 KiB
title: payments.sendPaymentForm
description: Bots only: send payment form
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
Method: payments.sendPaymentForm
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 (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 this method can return:
Error | Description |
---|---|
MESSAGE_ID_INVALID | The provided message id is invalid |