Attempts to make the current identity's party join a specific matchmaker
lobby.
This request will use the party player count configured for the lobby
group.
If succeeds, all party members will receive a
GlobalEventMatchmakerLobbyJoin event with all the information required to
join the lobby.
Identity must be the party leader.
See JoinLobby.
example
Use a bare-bones client and the command you need to make an API call.
Attempts to make the current identity's party join a specific matchmaker lobby. This request will use the party player count configured for the lobby group. If succeeds, all party members will receive a
GlobalEventMatchmakerLobbyJoinevent with all the information required to join the lobby. Identity must be the party leader. SeeJoinLobby.Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, JoinMatchmakerLobbyForPartyCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, JoinMatchmakerLobbyForPartyCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new JoinMatchmakerLobbyForPartyCommand(input); const response = await client.send(command);JoinMatchmakerLobbyForPartyCommandInput for command's
inputshape.JoinMatchmakerLobbyForPartyCommandOutput for command's
responseshape.config for PartyServiceClient's
configshape.