The resource path of the group join request.
Format: groups/{group_id}/join-requests/{group_join_request_id}.
A request to join a group.
The acceptRequests permission is required.
The resource path of the group join request.
Format: groups/{group_id}/join-requests/{group_join_request_id}.
The timestamp when the group join request was created. This string is formatted as a Timestamp.
The resource path of the user.
https://apis.roblox.com
{
"path": "groups/123/join-requests/123",
"createTime": "2023-07-05T12:34:56Z",
"user": "users/156"
}
List join requests under a group.
The group ID.
The maximum number of group join requests to return. The service might return fewer than this value. If unspecified, at most 10 group join requests are returned. The maximum value is 20 and higher values are set to 20.
A page token, received from a previous call, to retrieve a subsequent page.
When paginating, all other parameters provided to the subsequent call must match the call that provided the page token.
This field may be set in order to filter the resources returned.
Filtering conforms to Common Expression Language (CEL). Only the user field and == operator are supported.
Example: "user == 'users/156'".
A list of GroupJoinRequests in the parent collection.
The GroupJoinRequests from the specified Group.
A token that you can send as a pageToken parameter to retrieve the next page. If this field is omitted, there are no subsequent pages.
curl -L -X GET 'https://apis.roblox.com/cloud/v2/groups/{group_id}/join-requests?maxPageSize=10&pageToken={string}&filter={string}' \
-H 'x-api-key: {your-api-key}'
{
"groupJoinRequests": [
{
"path": "groups/123/join-requests/123",
"createTime": "2023-07-05T12:34:56Z",
"user": "users/156"
}
],
"nextPageToken": "string"
}
Accepts a join request.
The group ID.
The join-request ID.
curl -L -X POST 'https://apis.roblox.com/cloud/v2/groups/{group_id}/join-requests/{join_request_id}:accept' \
-H 'x-api-key: {your-api-key}' \
-H 'Content-Type: application/json' \
--data '{}'
Declines a join request.
The group ID.
The join-request ID.
curl -L -X POST 'https://apis.roblox.com/cloud/v2/groups/{group_id}/join-requests/{join_request_id}:decline' \
-H 'x-api-key: {your-api-key}' \
-H 'Content-Type: application/json' \
--data '{}'