DeclineGuildJoinRequest
public BackndReturnObject DeclineGuildJoinRequest(string gamerIndate);
Parameter
Value | Type | Description |
---|---|---|
gamerIndate | string | indate of gamer to reject from joining guild |
Description
Rejects the member with the gamerIndate to join the guild from the members who applied.
Example
Synchronous
Backnd.Guild.DeclineGuildJoinRequest("gamerIndate");
Asynchronous
Backnd.Guild.DeclineGuildJoinRequest("gamerIndate", (callback) =>
{
// Post-process
});
Return cases
Success cases
When the request is declined successfully
statusCode : 204
Error cases
When the user is not a guild master or manager
statusCode : 403
errorCode : ForbiddenException
When the gamerIndate does not exist
statusCode : 404
errorCode : NotFoundException