*이 콘텐츠는 AI(베타)를 사용해 번역되었으며, 오류가 있을 수 있습니다. 이 페이지를 영어로 보려면 여기를 클릭하세요.

Group

Roblox 내의 미니 커뮤니티로 커뮤니케이션, 토론 등을 위한 곳입니다.

특성

pathstring

그룹의 리소스 경로.

형식: groups/{group_id}.

createTimestring
출력 전용

그룹이 생성된 시점의 타임스탬프. 이 문자열은 Timestamp 형식으로 지정됩니다.

updateTimestring
출력 전용

그룹이 마지막으로 업데이트된 시점의 타임스탬프. 이 문자열은 Timestamp 형식으로 지정됩니다.

idstring
출력 전용

그룹을 식별하는 고유 ID.

displayNamestring

그룹의 이름.

비어 있지 않아야 합니다. 최대 50자의 제한이 있습니다.

descriptionstring

그룹의 설명.

최대 한도는 1000자입니다.

ownerstring
출력 전용

소유자의 리소스 경로.

그룹이 포기되고 소유자가 없으면 이 필드가 반환되지 않습니다.

memberCountnumber
출력 전용

그룹 내의 총 멤버 수.

publicEntryAllowedboolean

그룹이 공개 입장을 허용하는지 여부.

lockedboolean
출력 전용

그룹이 잠겨 있는지 여부.

잠긴 그룹은 Roblox에서 조정되거나 금지된 그룹입니다.

verifiedboolean
출력 전용

그룹에 확인된 배지가 있는지 여부.

기본 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 /cloud/v2/groups/{group_id}

지정된 그룹을 가져옵니다.

요청경로 매개 변수
group_idstring
필수

그룹 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
}