phone.declineConferenceCallInvite
Decline a conference call invite.
func (c *Client) PhoneDeclineConferenceCallInvite(ctx context.Context, msgid int) (UpdatesClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.PhoneDeclineConferenceCallInvite(ctx, msgid)
if err != nil {
return err
}
_ = res // UpdatesClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
MsgID | int | yes | The ID of the messageActionConferenceCall to decline. |
Returns
Possible errors
| Code | Type | Description |
|---|---|---|
| 400 | MESSAGE_ID_INVALID | The provided message id is invalid. |
References
- Official documentation
- Generated Go reference
- TL definition:
phone.declineConferenceCallInvite#3c479971