updatePlaceConfiguration_V2
Updates the configuration for a place owned by the authenticated user.
Parameters
Name | Type | Description |
---|---|---|
placeId | PlaceId | The ID of the place to update the configuration for. |
name? | Name | The name for the place. |
description? | Description | The 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}