updatePlaceConfiguration_V1
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: updatedPlace } = await ClassicDevelopApi.updatePlaceConfiguration({
placeId: 16349154726,
name: "New name",
});
Example Data
{
id: 16349154726,
universeId: 5638577595,
name: "New name!",
description: "",
}
Endpoint
GET /v1/places/{placeId}