v1
latestOpenAPI 3.0.42026-08-068161,1253.1 MBList User Restriction Logs
List changes to UserRestriction resources within a given universe. This includes both universe-level and place-level restrictions.
For universe-level restriction logs, the place field will be empty.
Path parameters
The universe ID.
Query parameters
The maximum number of UserRestrictionLogs to return. The service may return fewer than this value. If unspecified, at most 10 UserRestrictionLogs are returned. The maximum value is 100 and higher values are set to 100.
A page token, received from a previous call, to retrieve a subsequent page.
When paginating, all other parameters provided to the subsequent call must match the call that provided the page token.
This field may be set to filter the logs returned.
The filter field supports a very small number of CEL:
- user
- place
- The == comparison operator is available.
- The && logical operator is also supported.
As an example, filtering for a user and a place takes the form filter="user == 'users/123'" && "place == 'places/456'"
Response
OK
Example response
{
"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
}
]
}