Revokes a party invite from the current identity's party. Identity must be the party leader.
Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, RevokePartyInviteCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, RevokePartyInviteCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new RevokePartyInviteCommand(input); const response = await client.send(command);
RevokePartyInviteCommandInput for command's input shape.
input
RevokePartyInviteCommandOutput for command's response shape.
response
config for PartyServiceClient's config shape.
config
Revokes a party invite from the current identity's party. Identity must be the party leader.
Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, RevokePartyInviteCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, RevokePartyInviteCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new RevokePartyInviteCommand(input); const response = await client.send(command);RevokePartyInviteCommandInput for command's
inputshape.RevokePartyInviteCommandOutput for command's
responseshape.config for PartyServiceClient's
configshape.