Instance

특성

pathstring
hasChildrenboolean
출력 전용
engineInstanceobject
기본 URL

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

{
"path": "universes/123/places/123/instances/0123456789abcdef0123456789abcdef",
"hasChildren": true,
"engineInstance": {
"Id": "string",
"Parent": "string",
"Name": "string",
"Details": {
"Folder": null
}
}
}

Instance

Get Instance
베타

GET /cloud/v2/universes/{universe}/places/{place}/instances/{instance}
범위
universe.place.instance:read
요청경로 매개 변수
universestring
필수
placestring
필수
instancestring
필수
응답
응답Instance메타데이터
GET /cloud/v2/universes/{universe}/places/{place}/instances/{instance}

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

Instance

Update Instance
베타

PATCH /cloud/v2/universes/{universe}/places/{place}/instances/{instance}
범위
universe.place.instance:write
요청경로 매개 변수
universestring
필수
placestring
필수
instancestring
필수
쿼리 매개 변수
updateMaskstring
요청 본문Instance
응답
응답Instance메타데이터
PATCH /cloud/v2/universes/{universe}/places/{place}/instances/{instance}

curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/universes/{universe}/places/{place}/instances/{instance}?updateMask={string}' \
-H 'x-api-key: {your-api-key}' \
--data '{ \
"engineInstance": { \
"Id": "string", \
"Parent": "string", \
"Name": "string", \
"Details": { \
"Folder": null \
} \
} \
}'

Instance

List Instance Children
베타

GET /cloud/v2/universes/{universe}/places/{place}/instances/{instance}:listChildren
범위
universe.place.instance:read
요청경로 매개 변수
universestring
필수
placestring
필수
instancestring
필수
쿼리 매개 변수
maxPageSizenumber
pageTokenstring
응답
응답
nextPageTokenstring
메타데이터
GET /cloud/v2/universes/{universe}/places/{place}/instances/{instance}:listChildren

curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe}/places/{place}/instances/{instance}:listChildren?maxPageSize=100&pageToken={string}' \
-H 'x-api-key: {your-api-key}'