NominateMasterV3
public BackendReturnObject NominateMasterV3(string gamerIndate);
Parameter
Value | Type | Description |
---|---|---|
gamerIndate | string | indate of gamer to be designated as guild master |
Description
The current guild master delegates the master's privileges to a guild member. The guild master's privileges change to a guild member.
Example
Synchronous
Backend.Guild.NominateMasterV3("gamerIndate");
Asynchronous
Backend.Guild.NominateMasterV3("gamerIndate", (callback) =>
{
// Post-process
});
SendQueue
SendQueue.Enqueue(Backend.Guild.NominateMasterV3, "gamerIndate", (callback) =>
{
// Post-process
});
Return cases
Success cases
When the delegation is successful
statusCode : 204
Error cases
When a guild member who is not the master makes an attempt
statusCode : 403
errorCode : ForbiddenException
When the user is not in the guild
statusCode : 404
errorCode : NotFoundException