Universe

属性

pathstring

createTimestring

updateTimestring

displayNamestring

descriptionstring

visibilityEnum<string>

facebookSocialLinkobject

twitterSocialLinkobject

youtubeSocialLinkobject

twitchSocialLinkobject

discordSocialLinkobject

robloxGroupSocialLinkobject

guildedSocialLinkobject

voiceChatEnabledboolean

ageRatingEnum<string>

privateServerPriceRobuxnumber

desktopEnabledboolean

mobileEnabledboolean

tabletEnabledboolean

consoleEnabledboolean

vrEnabledboolean

以下の一つ:
userstring

groupstring

ベース URL

https://apis.roblox.com/cloud
Universe リソース

{
"path": "universes/20514875",
"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!",
"user": "string",
"visibility": "VISIBILITY_UNSPECIFIED",
"facebookSocialLink": {
"title": "string",
"uri": "string"
},
"twitterSocialLink": {
"title": "string",
"uri": "string"
},
"youtubeSocialLink": {
"title": "string",
"uri": "string"
},
"twitchSocialLink": {
"title": "string",
"uri": "string"
},
"discordSocialLink": {
"title": "string",
"uri": "string"
},
"robloxGroupSocialLink": {
"title": "string",
"uri": "string"
},
"guildedSocialLink": {
"title": "string",
"uri": "string"
},
"voiceChatEnabled": true,
"ageRating": "AGE_RATING_UNSPECIFIED",
"privateServerPriceRobux": "integer",
"desktopEnabled": true,
"mobileEnabled": true,
"tabletEnabled": true,
"consoleEnabled": true,
"vrEnabled": true
}

Universe

Get Universe

GET /cloud/v2/universes/{universe}
リクエストパスのパラメータ
universestring必須

レスポンスUniverse
GET /cloud/v2/universes/{universe}

curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe}' \
-H 'x-api-key: {your-api-key}'
レスポンス

{
"path": "universes/20514875",
"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!",
"user": "string",
"visibility": "VISIBILITY_UNSPECIFIED",
"facebookSocialLink": {
"title": "string",
"uri": "string"
},
"twitterSocialLink": {
"title": "string",
"uri": "string"
},
"youtubeSocialLink": {
"title": "string",
"uri": "string"
},
"twitchSocialLink": {
"title": "string",
"uri": "string"
},
"discordSocialLink": {
"title": "string",
"uri": "string"
},
"robloxGroupSocialLink": {
"title": "string",
"uri": "string"
},
"guildedSocialLink": {
"title": "string",
"uri": "string"
},
"voiceChatEnabled": true,
"ageRating": "AGE_RATING_UNSPECIFIED",
"privateServerPriceRobux": "integer",
"desktopEnabled": true,
"mobileEnabled": true,
"tabletEnabled": true,
"consoleEnabled": true,
"vrEnabled": true
}

Universe

Update Universe

PATCH /cloud/v2/universes/{universe}
範囲
universe:write
リクエストパスのパラメータ
universestring必須

クエリのパラメータ
updateMaskstring

リクエスト本文Universe
レスポンスUniverse
PATCH /cloud/v2/universes/{universe}

curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/universes/{universe}?updateMask={string}' \
-H 'x-api-key: {your-api-key}' \
--data '{ \
"facebookSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"twitterSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"youtubeSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"twitchSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"discordSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"robloxGroupSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"guildedSocialLink": { \
"title": "string", \
"uri": "string" \
}, \
"voiceChatEnabled": true, \
"privateServerPriceRobux": "integer", \
"desktopEnabled": true, \
"mobileEnabled": true, \
"tabletEnabled": true, \
"consoleEnabled": true, \
"vrEnabled": true \
}'
レスポンス

{
"path": "universes/20514875",
"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!",
"user": "string",
"visibility": "VISIBILITY_UNSPECIFIED",
"facebookSocialLink": {
"title": "string",
"uri": "string"
},
"twitterSocialLink": {
"title": "string",
"uri": "string"
},
"youtubeSocialLink": {
"title": "string",
"uri": "string"
},
"twitchSocialLink": {
"title": "string",
"uri": "string"
},
"discordSocialLink": {
"title": "string",
"uri": "string"
},
"robloxGroupSocialLink": {
"title": "string",
"uri": "string"
},
"guildedSocialLink": {
"title": "string",
"uri": "string"
},
"voiceChatEnabled": true,
"ageRating": "AGE_RATING_UNSPECIFIED",
"privateServerPriceRobux": "integer",
"desktopEnabled": true,
"mobileEnabled": true,
"tabletEnabled": true,
"consoleEnabled": true,
"vrEnabled": true
}

Universe

Restart Universe Servers

POST /cloud/v2/universes/{universe}:restartServers
範囲
universe:write
リクエストパスのパラメータ
universestring必須

リクエスト本文
pathstring

レスポンス
POST /cloud/v2/universes/{universe}:restartServers

curl -L -X POST 'https://apis.roblox.com/cloud/v2/universes/{universe}:restartServers' \
-H 'x-api-key: {your-api-key}' \
--data '{}'
レスポンス

null