2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: phone.setCallRating
|
|
|
|
description: Set phone call rating
|
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Method: phone.setCallRating
|
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
Set phone call rating
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Description | Required |
|
|
|
|
|----------|---------------|-------------|----------|
|
|
|
|
|peer|[InputPhoneCall](../types/InputPhoneCall.md) | The phone call | Yes|
|
|
|
|
|rating|[int](../types/int.md) | Rating (1-5 stars) | Yes|
|
|
|
|
|comment|[string](../types/string.md) | An optional comment | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
### Return type: [Updates](../types/Updates.md)
|
|
|
|
|
|
|
|
### Can bots use this method: **NO**
|
|
|
|
|
|
|
|
|
2019-06-02 13:49:54 +02:00
|
|
|
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
```php
|
|
|
|
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();
|
|
|
|
|
|
|
|
$Updates = $MadelineProto->phone->setCallRating(['peer' => InputPhoneCall, 'rating' => int, 'comment' => 'string', ]);
|
|
|
|
```
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
Updates = phone.setCallRating({peer=InputPhoneCall, rating=int, comment='string', })
|
|
|
|
```
|
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
### Errors
|
2019-03-29 21:12:30 +01:00
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
| Code | Type | Description |
|
|
|
|
|------|----------|---------------|
|
|
|
|
|400|CALL_PEER_INVALID|The provided call peer object is invalid|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|