Classic APIs
ClassicDevelopApi
updatePlaceConfiguration_V2

updatePlaceConfiguration_V2

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: updatedConfig } = await ClassicDevelopApi.updatePlaceConfiguration_V2({
  placeId: 16349154726,
  allowCopying: false,
}); 

Example Data

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

Endpoint

GET /v1/places/{placeId}