實例的資源路徑。
格式:universes/{universe_id}/places/{place_id}/instances/{instance_id}.
*此內容是使用 AI(Beta 測試版)翻譯,可能含有錯誤。若要以英文檢視此頁面,請按一下這裡。
代表數據模型實例。
實例的資源路徑。
格式:universes/{universe_id}/places/{place_id}/instances/{instance_id}.
實例是否有任何子實例.
實例的屬性詳情.
https://apis.roblox.com
{
"path": "universes/123/places/123/instances/0123456789abcdef0123456789abcdef",
"hasChildren": true,
"engineInstance": {
"Id": "string",
"Parent": "string",
"Name": "string",
"Details": {
"Folder": {}
}
}
}
獲得一個實例和其屬性資料。
最大支持的回應資料大小為 500,000 位元。如果此限制超出,返回的 Operation 將使用具有錯誤代碼 422 的錯誤結果完成。
注意:在高流量期間,速率限制可能會降低。部分端點有額外的速率限制。深入瞭解速率限制。
宇宙ID。.
地點ID。.
實例 ID。.
curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe_id}/places/{place_id}/instances/{instance_id}' \
-H 'x-api-key: {your-api-key}'
更新實例的屬性資料。
當更新Script實例的源屬性時,最大支持的屬性尺寸是在UTF-8編碼後的200,000字節。
注意:在高流量期間,速率限制可能會降低。部分端點有額外的速率限制。深入瞭解速率限制。
宇宙ID。.
地點ID。.
實例 ID。.
要更新的字段列表。. 此字串的格式為 FieldMask。
curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/universes/{universe_id}/places/{place_id}/instances/{instance_id}?updateMask={string}' \
-H 'x-api-key: {your-api-key}' \
-H 'Content-Type: application/json' \
--data '{
"engineInstance": {
"Id": "string",
"Parent": "string",
"Name": "string",
"Details": {
"Folder": {}
}
}
}'
列出實例的兒子。
最大支持的回應資料大小為 500,000 位元。如果此限制超出,返回的 Operation 將使用具有錯誤代碼 422 的錯誤結果完成。
注意:在高流量期間,速率限制可能會降低。部分端點有額外的速率限制。深入瞭解速率限制。
宇宙ID。.
地點ID。.
實例 ID。.
要返回的兒子實例最大數量。服務可能會返回少於此值。如果未指定,最多 200 個子環將被返回。最大值為 200;超過 200 的值將被強制為 200。.
來自以前的 ListInstanceChildrenRequest 呼叫的頁面代幣。提供此來恢復後續頁面。
當頁面分頁時,所有其他參數提供給 ListInstanceChildrenRequest 必須與提供頁面代幣的呼叫匹配。.
curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe_id}/places/{place_id}/instances/{instance_id}:listChildren?maxPageSize=100&pageToken={string}' \
-H 'x-api-key: {your-api-key}'