Issue: When a community has no active owner and the previous owner’s account has been terminated, the V2 Group API incorrectly continues to indicate that the banned user is still the owner, despite them no longer being part of the community.
Additionally, the V1 Group API normally returns an empty string (""
) to represent that a community currently has no owner. However, in cases where the previous owner’s account has been terminated, the API incorrectly returns null
instead on certain communities.
Example:
-
V1 Group API:
https://groups.roblox.com/v1/groups/12623770
Returns null instead of “”. -
V2 Group API:
https://groups.roblox.com/v2/groups?groupIds=12623770
Incorrectly indicates banned user as the group owner.
Browser Information:
- Edge 134 on Windows 11
Expected behavior
Both Group APIs return the owner as an empty string (“”).
A private message is associated with this bug report
EDIT:
Normally when the community has no owner the V2 API will respond with null.
{
"data": [
{
"id": 15053767,
"name": "_Gaby_1092",
"description": "Make sure to join my group for give away to get in the give away make sure to Sub to my channel and like and than come back to the group and comment done.",
"owner": null,
"created": "2022-06-09T22:31:23.877Z",
"hasVerifiedBadge": false
}
]
}