Place

특성

pathstring

createTimestring

updateTimestring

displayNamestring

descriptionstring

serverSizenumber

기본 URL

https://apis.roblox.com/cloud
Place 리소스

{
"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}/places/{place}
요청경로 매개 변수
universestring필수

placestring필수

응답Place
GET /cloud/v2/universes/{universe}/places/{place}

curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe}/places/{place}' \
-H 'x-api-key: {your-api-key}'
응답

{
"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}/places/{place}
범위
universe.place:write
요청경로 매개 변수
universestring필수

placestring필수

쿼리 매개 변수
updateMaskstring

요청 본문Place
응답Place
PATCH /cloud/v2/universes/{universe}/places/{place}

curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/universes/{universe}/places/{place}?updateMask={string}' \
-H 'x-api-key: {your-api-key}' \
--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" \
}'
응답

{
"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"
}