The group router for the Guilded REST API.
new GroupRouter(rest);
The REST API manager the router belongs to.
Readonly
Add a member to a group on Guilded.
groups.addMember('abc', 'abc');
The ID of the group the member belongs to.
The ID of the member to add to the group.
Remove a member from a group on Guilded.
groups.removeMember('abc', 'abc');
The ID of the member to remove from the group.
The group router for the Guilded REST API.
Example