GroupShout

A single status post on a group that can hold important group updates or other information.

Attributes

pathstring

The resource path of the group shout.

Format: groups/{group_id}/shout.

createTimestring
Output Only

The timestamp when the group shout was created. This string is formatted as a Timestamp.

updateTimestring
Output Only

The timestamp when the group shout was last updated. This string is formatted as a Timestamp.

contentstring

The shout content.

Has a maximum limit of 255 characters.

posterstring
Output Only

The resource path for the poster of the group shout.

If the group is abandoned, has no owner, and has never had a shout, this field is not returned.

Base URL

https://apis.roblox.com
The GroupShout Resource

{
"path": "groups/123/shout",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"content": "This is the group shout content to share with everyone.",
"poster": "users/21557"
}

GroupShout

Get Group Shout
Beta

GET /cloud/v2/groups/{group_id}/shout

Gets the group shout.

If a guest can view the group shout, this is always retrievable.

If a guest cannot, a member who has the permissions to view the group shout, along with the group:read scope, will be able to read the group shout.

RequestPath Parameters
group_idstring
Required

The group ID.

ResponseGroupShout
GET /cloud/v2/groups/{group_id}/shout

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

{
"path": "groups/123/shout",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"content": "This is the group shout content to share with everyone.",
"poster": "users/21557"
}