Cloud APIs
ExperiencesApi
updatePlace

updatePlace

Updates a places information.

Parameters

NameTypeDescription
universeIdUniverseIdThe id of the universe to update place information for.
placeIdPlaceIdThe id of the place to update.
displayName?DisplayNameThe new display name for the place.
description?DescriptionThe new description for the place.
serverSize?ServerSizeThe new server size for the place.

Example

const { data: updatedInfo } = await ExperiencesApi.updatePlace({
  universeId: 5795192361,
  placeId: 16866553538,
  displayName: "Hello World",
}); 

Example Data

{
  path: "universes/5795192361/places/16866553538",
  createTime: 2024-03-25T10:42:46.297Z,
  updateTime: 2024-05-13T10:21:20.247Z,
  displayName: "Hello World",
  description: "",
  serverSize: 50,
} 

Endpoint

PATCH /cloud/v2/universes/{universeId}/places/{PlaceId}