Creates a group invite. Can be shared with other identities to let them join this group.
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);
CreateGroupInviteCommandInput for command's input shape.
input
CreateGroupInviteCommandOutput for command's response shape.
response
config for GroupServiceClient's config shape.
config
Creates a group invite. Can be shared with other identities to let them join this group.
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);CreateGroupInviteCommandInput for command's
inputshape.CreateGroupInviteCommandOutput for command's
responseshape.config for GroupServiceClient's
configshape.