1.9 KiB
1.9 KiB
title: payments.sendPaymentForm
description: Bots only: send payment form
Method: payments.sendPaymentForm
Bots only: send payment form
Parameters:
Name | Type | Required | Description |
---|---|---|---|
msg_id | CLICK ME int | Yes | Message ID |
requested_info_id | CLICK ME string | Optional | ID of requested info |
shipping_option_id | CLICK ME string | Optional | Shipping option ID |
credentials | CLICK ME InputPaymentCredentials | Yes | Payment credentials |
Return type: payments_PaymentResult
Can bots use this method: NO
Errors this method can return:
Error | Description |
---|---|
MESSAGE_ID_INVALID | The provided message id is invalid |
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, })