Airgram

Guides
/
/
Methods

api.revokeGroupCallInviteLink()

Revokes invite link for a group call. Requires groupCall.can_be_managed group call flag

Parameters RevokeGroupCallInviteLinkParams:

NameTypeDescription
groupCallIdnumber Group call identifier
Returns ApiResponse interface:
interface ApiResponse {
  _: 'revokeGroupCallInviteLink' | 'error'
  airgram: Airgram
  request: {
    method: 'revokeGroupCallInviteLink'
    params: RevokeGroupCallInviteLinkParams
  }
  response:  | 
  setState: (nextState: Record<string, unknown>) => void
  getState: () => Record<string, unknown>
}