Classic APIs
ClassicDevelopApi
updatePlaceConfiguration_V1

updatePlaceConfiguration_V1

Updates the configuration for a place owned by the authenticated user.

Parameters

NameTypeDescription
placeIdPlaceIdThe ID of the place to update the configuration for.
name?NameThe name for the place.
description?DescriptionThe description for the place.

Example

const { data: updatedPlace } = await ClassicDevelopApi.updatePlaceConfiguration({
  placeId: 16349154726,
  name: "New name",
}); 

Example Data

{
  id: 16349154726,
  universeId: 5638577595,
  name: "New name!",
  description: "",
} 

Endpoint

GET /v1/places/{placeId}