Skip to main content

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

NameTypeRequiredDescription
RtmpStreamboolWhether RTMP stream support should be enabled: only the group/supergroup/channel owner can use this flag.
PeerInputPeerClassyesAssociate the group call or livestream to the provided group/supergroup/channel
RandomIDintyesUnique client message ID required to prevent creation of duplicate group calls
TitlestringCall title, if not set defaults to the group/channel's name.
ScheduleDateintFor 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

UpdatesClass

Possible errors

CodeTypeDescription
400CHANNEL_PRIVATEYou haven't joined this channel/supergroup.
400CHAT_ADMIN_REQUIREDYou must be an admin in this chat to do this.
400CREATE_CALL_FAILEDAn error occurred while creating the call.
400GROUPCALL_ALREADY_DISCARDEDThe group call was already discarded.
400PEER_ID_INVALIDThe provided peer id is invalid.
400SCHEDULE_DATE_INVALIDInvalid schedule date provided.

References