games.namespaces.logs.listNamespaceLobbies
Description
Returns a list of lobbies for the given game namespace.
Code Examples
Request Parameters
game_id
required path parameter
namespace_id
required path parameter
before_create_ts
optional query parameter
Returns lobbies created before this timestamp.
Response Body
lobbies
array of objectsA list of lobby log summaries.
lobbies.lobby_id
stringlobbies.namespace_id
stringlobbies.lobby_group_name_id
stringA human readable short identifier used to references resources. Different than a
rivet.common#Uuid
because this is intended to be human readable. Different thanrivet.common#DisplayName
because this should not include special characters and be short.lobbies.region_id
stringlobbies.create_ts
stringRFC3339 timestamp
lobbies.start_ts
stringRFC3339 timestamp
lobbies.ready_ts
stringRFC3339 timestamp
lobbies.status
objectA union representing the state of a lobby.
lobbies.status.running
empty objectlobbies.status.stopped
objectThe status of a stopped lobby.
lobbies.status.stopped.stop_ts
stringRFC3339 timestamp
lobbies.status.stopped.failed
booleanWhether or not the lobby failed or stopped successfully.
lobbies.status.stopped.exit_code
numberThe exit code returned by the lobby's main process when stopped.