Place

Represents a Roblox place.

Attributes

pathstring

The resource path of the place.

Format: universes/{universe_id}/places/{place_id}.

createTimestring
Output Only

The timestamp at which the place was created. This string is formatted as a Timestamp.

updateTimestring
Output Only

The timestamp at which the place was updated. This string is formatted as a Timestamp.

displayNamestring

The name of the place.

descriptionstring

The description of the place.

serverSizenumber

The maximum number of allowed users in a single server.

Base URL

https://apis.roblox.com
The Place Resource

{
"path": "universes/123/places/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"displayName": "ROBLOX Battle [OPEN]",
"description": "OPEN SOURCE! \n Feel free to check out how we made this game and ask us about it!",
"serverSize": "integer"
}

Place

Get Place

GET /cloud/v2/universes/{universe_id}/places/{place_id}

Gets the specified place.

RequestPath Parameters
universe_idstring
Required

The universe ID.

place_idstring
Required

The place ID.

ResponsePlace
GET /cloud/v2/universes/{universe_id}/places/{place_id}

curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe_id}/places/{place_id}' \
-H 'x-api-key: {your-api-key}'
Response

{
"path": "universes/123/places/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"displayName": "ROBLOX Battle [OPEN]",
"description": "OPEN SOURCE! \n Feel free to check out how we made this game and ask us about it!",
"serverSize": "integer"
}

Place

Update Place

PATCH /cloud/v2/universes/{universe_id}/places/{place_id}

Updates the specified place.

Scopes
universe.place:write
RequestPath Parameters
universe_idstring
Required

The universe ID.

place_idstring
Required

The place ID.

Query Parameters
updateMaskstring

The list of fields to update. This string is formatted as a FieldMask.

Request BodyPlace
ResponsePlace
PATCH /cloud/v2/universes/{universe_id}/places/{place_id}

curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/universes/{universe_id}/places/{place_id}?updateMask={string}' \
-H 'x-api-key: {your-api-key}' \
-H 'Content-Type: application/json' \
--data '{
"displayName": "ROBLOX Battle [OPEN]",
"description": "OPEN SOURCE! \n Feel free to check out how we made this game and ask us about it!",
"serverSize": "integer"
}'
Response

{
"path": "universes/123/places/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"displayName": "ROBLOX Battle [OPEN]",
"description": "OPEN SOURCE! \n Feel free to check out how we made this game and ask us about it!",
"serverSize": "integer"
}