MadelineProto/old_docs/API_docs_v71/methods/payments_sendPaymentForm.md

75 lines
1.9 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: payments.sendPaymentForm
2018-03-23 16:23:49 +01:00
description: Bots only: send payment form
2017-10-14 11:50:46 +02:00
---
## Method: payments.sendPaymentForm
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Bots only: send payment form
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2018-03-27 14:41:50 +02:00
|msg\_id|[int](../types/int.md) | Yes|Message ID|
|requested\_info\_id|[string](../types/string.md) | Optional|ID of requested info|
|shipping\_option\_id|[string](../types/string.md) | Optional|Shipping option ID|
|credentials|[InputPaymentCredentials](../types/InputPaymentCredentials.md) | Yes|Payment credentials|
2017-10-14 11:50:46 +02:00
### Return type: [payments\_PaymentResult](../types/payments_PaymentResult.md)
### Can bots use this method: **NO**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-10-14 11:50:46 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-10-14 11:50:46 +02:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-10-14 11:50:46 +02:00
$payments_PaymentResult = $MadelineProto->payments->sendPaymentForm(['msg_id' => int, 'requested_info_id' => 'string', 'shipping_option_id' => 'string', 'credentials' => InputPaymentCredentials, ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-10-14 11:50:46 +02:00
### 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, })
```
2018-03-27 14:41:50 +02:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|MESSAGE_ID_INVALID|The provided message id is invalid|