UserRestriction
- 리소스 경로
- /cloud/v2/universes/{universe}/user-restrictions
- /cloud/v2/universes/{universe}/places/{place}/user-restrictions
특성
기본 URL
https://apis.roblox.com/cloud
UserRestriction 리소스
{
"path": "universes/123/user-restrictions/123",
"updateTime": "2023-07-05T12:34:56Z",
"user": "users/156",
"gameJoinRestriction": {
"active": true,
"startTime": "2023-07-05T12:34:56Z",
"duration": "3s",
"privateReason": "some private reason",
"displayReason": "some display reason",
"excludeAltAccounts": true,
"inherited": true
}
}
UserRestriction
List User Restrictions
GET /cloud/v2/universes/{universe}/user-restrictions
범위universe.user-restriction:read
요청경로 매개 변수응답userRestrictionsarray<UserRestriction> nextPageTokenstring
GET /cloud/v2/universes/{universe}/user-restrictions
curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe}/user-restrictions?maxPageSize=10&pageToken={string}&filter={string}' \
-H 'x-api-key: {your-api-key}'
응답
{
"userRestrictions": [
{
"path": "universes/123/user-restrictions/123",
"updateTime": "2023-07-05T12:34:56Z",
"user": "users/156",
"gameJoinRestriction": {
"active": true,
"startTime": "2023-07-05T12:34:56Z",
"duration": "3s",
"privateReason": "some private reason",
"displayReason": "some display reason",
"excludeAltAccounts": true,
"inherited": true
}
}
],
"nextPageToken": "string"
}
UserRestriction
Get User Restriction
GET /cloud/v2/universes/{universe}/user-restrictions/{user-restriction}
범위universe.user-restriction:read
요청경로 매개 변수GET /cloud/v2/universes/{universe}/user-restrictions/{user-restriction}
curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe}/user-restrictions/{user-restriction}' \
-H 'x-api-key: {your-api-key}'
응답
{
"path": "universes/123/user-restrictions/123",
"updateTime": "2023-07-05T12:34:56Z",
"user": "users/156",
"gameJoinRestriction": {
"active": true,
"startTime": "2023-07-05T12:34:56Z",
"duration": "3s",
"privateReason": "some private reason",
"displayReason": "some display reason",
"excludeAltAccounts": true,
"inherited": true
}
}
UserRestriction
Update User Restriction
PATCH /cloud/v2/universes/{universe}/user-restrictions/{user-restriction}
범위universe.user-restriction:write
요청경로 매개 변수PATCH /cloud/v2/universes/{universe}/user-restrictions/{user-restriction}
curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/universes/{universe}/user-restrictions/{user-restriction}?updateMask={string}&idempotencyKey.key={string}&idempotencyKey.firstSent={string}' \
-H 'x-api-key: {your-api-key}' \
--data '{ \
"gameJoinRestriction": { \
"active": true, \
"startTime": "2023-07-05T12:34:56Z", \
"duration": "3s", \
"privateReason": "some private reason", \
"displayReason": "some display reason", \
"excludeAltAccounts": true, \
"inherited": true \
} \
}'
응답
{
"path": "universes/123/user-restrictions/123",
"updateTime": "2023-07-05T12:34:56Z",
"user": "users/156",
"gameJoinRestriction": {
"active": true,
"startTime": "2023-07-05T12:34:56Z",
"duration": "3s",
"privateReason": "some private reason",
"displayReason": "some display reason",
"excludeAltAccounts": true,
"inherited": true
}
}
UserRestriction
List User Restriction Logs
GET /cloud/v2/universes/{universe}/user-restrictions:listLogs
범위universe.user-restriction:read
요청경로 매개 변수응답logsarray<object> nextPageTokenstring
GET /cloud/v2/universes/{universe}/user-restrictions:listLogs
curl -L -X GET 'https://apis.roblox.com/cloud/v2/universes/{universe}/user-restrictions:listLogs?maxPageSize=10&pageToken={string}&filter={string}' \
-H 'x-api-key: {your-api-key}'
응답
{
"logs": [
{
"user": "users/156",
"place": "places/456",
"moderator": {
"robloxUser": "users/156"
},
"createTime": "2023-07-05T12:34:56Z",
"active": true,
"startTime": "2023-07-05T12:34:56Z",
"duration": "3s",
"privateReason": "some private reason",
"displayReason": "some display reason",
"excludeAltAccounts": true
}
],
"nextPageToken": "string"
}