Il percorso delle risorse del Posto.
Formato: universes/{universe_id}/places/{place_id}.
*Questo contenuto è tradotto usando AI (Beta) e potrebbe contenere errori. Per visualizzare questa pagina in inglese, clicca qui.
Rappresenta un Postodi Roblox.
Il percorso delle risorse del Posto.
Formato: universes/{universe_id}/places/{place_id}.
L'timestamp in cui il luogo è stato creato. Questa stringa è formattata come Timestamp.
L'timestamp in cui il luogo è stato aggiornato. Questa stringa è formattata come Timestamp.
Il nome del Posto.
La descrizione del Posto.
Il numero massimo di utenti consentiti in un singolo Server.
https://apis.roblox.com
{
"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"
}
Ottiene il Postospecificato.
L'ID dell'universo.
L'ID del luogo.
curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe_id}/places/{place_id}' \
-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"
}
Aggiorna il Postospecificato.
L'ID dell'universo.
L'ID del luogo.
L'elenco dei campi da Aggiornarmento. Questa stringa è formattata come Timestamp.
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"
}'
{
"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"
}