RejectApplicantV3
public BackendReturnObject RejectApplicantV3(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
Backend.Guild.RejectApplicantV3("gamerIndate");
Asynchronous
Backend.Guild.RejectApplicantV3("gamerIndate", (callback) =>
{
// Post-process
});
SendQueue
SendQueue.Enqueue(Backend.Guild.RejectApplicantV3, "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