Returns a party profile for the party the current identity is a member of.
Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, GetPartySelfProfileCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, GetPartySelfProfileCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new GetPartySelfProfileCommand(input); const response = await client.send(command);
GetPartySelfProfileCommandInput for command's input shape.
input
GetPartySelfProfileCommandOutput for command's response shape.
response
config for PartyServiceClient's config shape.
config
Returns a party profile for the party the current identity is a member of.
Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, GetPartySelfProfileCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, GetPartySelfProfileCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new GetPartySelfProfileCommand(input); const response = await client.send(command);GetPartySelfProfileCommandInput for command's
inputshape.GetPartySelfProfileCommandOutput for command's
responseshape.config for PartyServiceClient's
configshape.