Attempts to make the current identity's party find a lobby based on the
given criteria.
If succeeds, all party members will receive a
GlobalEventMatchmakerLobbyJoin event with all the information required to
join the lobby.
This request will use the party player count configured for the lobby
group.
See FindLobby.
example
Use a bare-bones client and the command you need to make an API call.
Attempts to make the current identity's party find a lobby based on the given criteria. If succeeds, all party members will receive a
GlobalEventMatchmakerLobbyJoinevent with all the information required to join the lobby. This request will use the party player count configured for the lobby group. SeeFindLobby.Use a bare-bones client and the command you need to make an API call.
import { PartyServiceClient, FindMatchmakerLobbyForPartyCommand } from "@rivet-gg/party"; // ES Modules import // const { PartyServiceClient, FindMatchmakerLobbyForPartyCommand } = require("@rivet-gg/party"); // CommonJS import const client = new PartyServiceClient(config); const command = new FindMatchmakerLobbyForPartyCommand(input); const response = await client.send(command);FindMatchmakerLobbyForPartyCommandInput for command's
inputshape.FindMatchmakerLobbyForPartyCommandOutput for command's
responseshape.config for PartyServiceClient's
configshape.