Group

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

Nitelikler

pathstring

The resource path of the group.

Format: groups/{group_id}.

createTimestring
Yalnızca Çıkış

The timestamp when the group was created. Bu dizi Timestamp olarak biçimlendirilmiş.

updateTimestring
Yalnızca Çıkış

The timestamp when the group was last updated. Bu dizi Timestamp olarak biçimlendirilmiş.

idstring
Yalnızca Çıkış

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
Yalnızca Çıkış

The resource path of the owner.

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

memberCountnumber
Yalnızca Çıkış

The total number of members within a group.

publicEntryAllowedboolean

Whether the group allows public entry.

lockedboolean
Yalnızca Çıkış

Whether the group is locked.

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

verifiedboolean
Yalnızca Çıkış

Whether the group has the verified badge.

Taban URL

https://apis.roblox.com
Group Kaynağı

{
"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
Beta

GET /cloud/v2/groups/{group_id}

Gets the specified group.

TalepYol Parametreleri
group_idstring
Gerekli

The group ID.

YanıtGroup
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}'
Yanıt

{
"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
}