Options
All
  • Public
  • Public/Protected
  • All
Menu

Returns a party profile.

example

Use a bare-bones client and the command you need to make an API call.

import { PartyServiceClient, GetPartyProfileCommand } from "@rivet-gg/party"; // ES Modules import
// const { PartyServiceClient, GetPartyProfileCommand } = require("@rivet-gg/party"); // CommonJS import
const client = new PartyServiceClient(config);
const command = new GetPartyProfileCommand(input);
const response = await client.send(command);
see

GetPartyProfileCommandInput for command's input shape.

see

GetPartyProfileCommandOutput for command's response shape.

see

config for PartyServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

input: GetPartyProfileCommandInput

Readonly middlewareStack

middlewareStack: IMiddlewareStack<GetPartyProfileCommandInput, GetPartyProfileCommandOutput>