The REST API manager the router belongs to.
Readonly
restAdd a role to a server member on Guilded.
serverMembers.addRole('abc', 'abc', 123);
The ID of the server the member belongs to.
The ID of the server member to add the role to.
The ID of the role to add to the server member.
Award XP to a server member on Guilded.
The total amount of XP the server member has.
serverMembers.awardXp('abc', 'abc', 100);
The ID of the server the member belongs to.
The ID of the server member to award XP to.
The amount of XP to award to the server member.
Fetch a server member from Guilded.
The fetched server member.
serverMembers.fetch('abc', 'abc');
The ID of the server the member belongs to.
The ID of the server member to fetch.
Fetch server members from Guilded.
The fetched server members.
serverMembers.fetch('abc');
The ID of the server the members belong to.
Fetch a list of roles that a server member has on Guilded.
The IDs of roles the server member has.
serverMembers.fetchRoles('abc', 'abc');
The ID of the server the member belongs to.
The ID of the server member to fetch the roles for.
Fetch a social link for a server member on Guilded.
The fetched social link.
serverMembers.fetchSocialLink('abc', 'abc', 'youtube');
The ID of the server the member belongs to.
The ID of the server member to fetch the social link for.
The type of social link to fetch.
Remove the nickname of a server member on Guilded.
serverMembers.removeNickname('abc', 'abc');
The ID of the server the member belongs to.
The ID of the server member to edit.
Remove a role from a server member on Guilded.
serverMembers.removeRole('abc', 'abc', 123);
The ID of the server the member belongs to.
The ID of the server member to remove the role from.
The ID of the role to remove from the server member.
Set the nickname of a server member on Guilded.
The nickname that was set.
serverMembers.setNickname('abc', 'abc', 'nickname');
The ID of the server the member belongs to.
The ID of the server member to edit.
The nickname of the server member.
Set XP of a server member on Guilded.
The total amount of XP the server member has.
serverMembers.setXp('abc', 'abc', 100);
The ID of the server the member belongs to.
The ID of the server member to set XP for.
The total XP of the server member.
The server member router for the Guilded REST API.
Example