Options
All
  • Public
  • Public/Protected
  • All
Menu

Creates a group invite. Can be shared with other identities to let them join this group.

example

Use a bare-bones client and the command you need to make an API call.

import { GroupServiceClient, CreateGroupInviteCommand } from "@rivet-gg/group"; // ES Modules import
// const { GroupServiceClient, CreateGroupInviteCommand } = require("@rivet-gg/group"); // CommonJS import
const client = new GroupServiceClient(config);
const command = new CreateGroupInviteCommand(input);
const response = await client.send(command);
see

CreateGroupInviteCommandInput for command's input shape.

see

CreateGroupInviteCommandOutput for command's response shape.

see

config for GroupServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

input: CreateGroupInviteCommandInput

Readonly middlewareStack