enableGroupLink
api.enableGroupLink(groupId)
Parameters
- groupId
string
Return
Promise<EnableGroupLinkResponse>
Types
ts
export type EnableGroupLinkResponse = {
link: string;
expiration_date: number;
enabled: number;
};Examples
ts
api.enableGroupLink("000000000000000000")
.then(console.log).catch(console.error);