Inspects a group invite returning information about the team that created it.
Use a bare-bones client and the command you need to make an API call.
import { GroupServiceClient, GetGroupInviteCommand } from "@rivet-gg/group"; // ES Modules import // const { GroupServiceClient, GetGroupInviteCommand } = require("@rivet-gg/group"); // CommonJS import const client = new GroupServiceClient(config); const command = new GetGroupInviteCommand(input); const response = await client.send(command);
GetGroupInviteCommandInput for command's input shape.
input
GetGroupInviteCommandOutput for command's response shape.
response
config for GroupServiceClient's config shape.
config
Inspects a group invite returning information about the team that created it.
Use a bare-bones client and the command you need to make an API call.
import { GroupServiceClient, GetGroupInviteCommand } from "@rivet-gg/group"; // ES Modules import // const { GroupServiceClient, GetGroupInviteCommand } = require("@rivet-gg/group"); // CommonJS import const client = new GroupServiceClient(config); const command = new GetGroupInviteCommand(input); const response = await client.send(command);GetGroupInviteCommandInput for command's
inputshape.GetGroupInviteCommandOutput for command's
responseshape.config for GroupServiceClient's
configshape.