The resource path of the group shout.
Format: groups/{group_id}/shout.
A single status post on a group that can hold important group updates or other information.
The resource path of the group shout.
Format: groups/{group_id}/shout.
The timestamp when the group shout was created. This string is formatted as a Timestamp.
The timestamp when the group shout was last updated. This string is formatted as a Timestamp.
The shout content.
Has a maximum limit of 255 characters.
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.
https://apis.roblox.com
{
"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"
}
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.
The group ID.
curl -L -X GET 'https://apis.roblox.com/cloud/v2/groups/{group_id}/shout' \
-H 'x-api-key: {your-api-key}'
{
"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"
}