Group

A mini-community within Roblox for communication, discussions, and more.

특성

pathstring

The resource path of the group.

Format: groups/{group_id}.

createTimestring
출력 전용

The timestamp when the group was created. 이 문자열은 Timestamp 형식으로 지정됩니다.

updateTimestring
출력 전용

The timestamp when the group was last updated. 이 문자열은 Timestamp 형식으로 지정됩니다.

idstring
출력 전용

A unique ID that identifies the group.

displayNamestring

The name of the group.

Must be non-empty. Has a maximum limit of 50 characters.

descriptionstring

The description of the group.

Has a maximum limit of 1000 characters.

ownerstring
출력 전용

The resource path of the owner.

If the group is abandoned and has no owner, this field is not returned.

memberCountnumber
출력 전용

The total number of members within a group.

publicEntryAllowedboolean

Whether the group allows public entry.

lockedboolean
출력 전용

Whether the group is locked.

A locked group is a group that has been moderated/banned by Roblox.

verifiedboolean
출력 전용

Whether the group has the verified badge.

기본 URL

https://apis.roblox.com
Group 리소스

{
"path": "groups/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"id": "7",
"displayName": "Roblox",
"description": "Official fan club of Roblox!",
"owner": "users/21557",
"memberCount": 10196297,
"publicEntryAllowed": true,
"locked": true,
"verified": true
}

Group

Get Group
베타

GET /cloud/v2/groups/{group_id}

Gets the specified group.

요청경로 매개 변수
group_idstring
필수

The group ID.

응답Group
GET /cloud/v2/groups/{group_id}

curl -L -X GET 'https://apis.roblox.com/cloud/v2/groups/{group_id}' \
-H 'x-api-key: {your-api-key}'
응답

{
"path": "groups/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"id": "7",
"displayName": "Roblox",
"description": "Official fan club of Roblox!",
"owner": "users/21557",
"memberCount": 10196297,
"publicEntryAllowed": true,
"locked": true,
"verified": true
}