The resource path of the instance.
Format: universes/{universe_id}/places/{place_id}/instances/{instance_id}.
Represents a data model instance.
The resource path of the instance.
Format: universes/{universe_id}/places/{place_id}/instances/{instance_id}.
whether the instance has any children instance.
the property details of the instance.
https://apis.roblox.com
{
"path": "universes/123/places/123/instances/0123456789abcdef0123456789abcdef",
"hasChildren": true,
"engineInstance": {
"Id": "string",
"Parent": "string",
"Name": "string",
"Details": {
"Folder": {}
}
}
}
Gets an instance and its property data.
The maximum supported response data size is 500,000 bytes. If this limit is exceeded, the returned Operation will be completed with an error result that has an error code of 422.
The universe ID.
The place ID.
The instance ID.
Diese Methode ist asynchron und gibt eine Operation zurück, die den aktuellen Status der Operation darstellt. Sie enthält einen Endpunktpfad, den du abfragen kannst, um die tatsächliche Antwort und die entsprechenden Metadaten zu erhalten. Weitere Informationen findest du in der Dokumentation.
Die folgenden Abschnitte beschreiben die Antwort- und Metadatenobjekte, die bereitgestellt werden, wenn eine Operation abgeschlossen ist.
Keine
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}'
Updates an instance's property data.
When updating a Script instance's source property, the maximum supported property size is 200,000 bytes after UTF-8 encoding.
The universe ID.
The place ID.
The instance ID.
The list of fields to update. Dieser String ist als FieldMask formatiert.
Diese Methode ist asynchron und gibt eine Operation zurück, die den aktuellen Status der Operation darstellt. Sie enthält einen Endpunktpfad, den du abfragen kannst, um die tatsächliche Antwort und die entsprechenden Metadaten zu erhalten. Weitere Informationen findest du in der Dokumentation.
Die folgenden Abschnitte beschreiben die Antwort- und Metadatenobjekte, die bereitgestellt werden, wenn eine Operation abgeschlossen ist.
Keine
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": {}
}
}
}'
Lists an instance's children.
The maximum supported response data size is 500,000 bytes. If this limit is exceeded, the returned Operation will be completed with an error result that has an error code of 422.
The universe ID.
The place ID.
The instance ID.
The maximum number of child instance to return. The service may return fewer than this value. If unspecified, at most 200 children will be returned. The maximum value is 200; values above 200 will be coerced to 200.
A page token, received from a previous ListInstanceChildrenRequest call. Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to ListInstanceChildrenRequest must match the call that provided the page token.
Diese Methode ist asynchron und gibt eine Operation zurück, die den aktuellen Status der Operation darstellt. Sie enthält einen Endpunktpfad, den du abfragen kannst, um die tatsächliche Antwort und die entsprechenden Metadaten zu erhalten. Weitere Informationen findest du in der Dokumentation.
Die folgenden Abschnitte beschreiben die Antwort- und Metadatenobjekte, die bereitgestellt werden, wenn eine Operation abgeschlossen ist.
Returns a list of the instance's children.
A list of children instances.
.
A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
Keine
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}'