Layer 220
PhoneEditGroupCallTitle
Edit the title of a group call or livestream
method
Users
phone.editGroupCallTitle#1ca6ac0a call:InputGroupCall title:string = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | Group call |
| Title | string | New title |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 403 | GROUPCALL_FORBIDDEN | The group call has already ended. |
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |
Gogram Example
// PhoneEditGroupCallTitle - positional arguments result, err := client.PhoneEditGroupCallTitle(&tg.InputGroupCall{}, "...") if err != nil { // handle error } // result is *tg.Updates