phone.createGroupCall
Create a group call or livestream.
func (c *Client) PhoneCreateGroupCall(ctx context.Context, request *PhoneCreateGroupCallRequest) (UpdatesClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.PhoneCreateGroupCall(ctx, &tg.PhoneCreateGroupCallRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // UpdatesClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
RtmpStream | bool | — | Whether RTMP stream support should be enabled: only the group/supergroup/channel owner can use this flag. |
Peer | InputPeerClass | yes | Associate the group call or livestream to the provided group/supergroup/channel |
RandomID | int | yes | Unique client message ID required to prevent creation of duplicate group calls |
Title | string | — | Call title, if not set defaults to the group/channel's name. |
ScheduleDate | int | — | For scheduled group call or livestreams, the absolute date (unixtime) when the group call is expected to start: the date must be at least 10 seconds and at most 8 days in the future. |
Returns
Possible errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup. |
| 400 | CHAT_ADMIN_REQUIRED | You must be an admin in this chat to do this. |
| 400 | CREATE_CALL_FAILED | An error occurred while creating the call. |
| 400 | GROUPCALL_ALREADY_DISCARDED | The group call was already discarded. |
| 400 | PEER_ID_INVALID | The provided peer id is invalid. |
| 400 | SCHEDULE_DATE_INVALID | Invalid schedule date provided. |
References
- Official documentation
- Generated Go reference
- TL definition:
phone.createGroupCall#48cdc6d8