Fetches a party based on a given invite.
Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, GetPartyFromInviteCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, GetPartyFromInviteCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new GetPartyFromInviteCommand(input); const response = await client.send(command);
GetPartyFromInviteCommandInput for command's input shape.
input
GetPartyFromInviteCommandOutput for command's response shape.
response
config for PartyServiceClient's config shape.
config
Fetches a party based on a given invite.
Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, GetPartyFromInviteCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, GetPartyFromInviteCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new GetPartyFromInviteCommand(input); const response = await client.send(command);GetPartyFromInviteCommandInput for command's
inputshape.GetPartyFromInviteCommandOutput for command's
responseshape.config for PartyServiceClient's
configshape.