NominateViceMasterV3
public BackendReturnObject NominateViceMasterV3(string gamerIndate);
Parameter
Value | Type | Description |
---|---|---|
gamerIndate | string | indate of gamer to be appointed as vice guild master |
Description
The guild master appoints the vice guild master. The number of vice guild masters is unlimited.
Example
Synchronous
Backend.Guild.NominateViceMasterV3("gamerIndate");
Asynchronous
Backend.Guild.NominateViceMasterV3("gamerIndate", (callback) =>
{
// Post-process
});
SendQueue
SendQueue.Enqueue(Backend.Guild.NominateViceMasterV3, "gamerIndate", (callback) =>
{
// Post-process
});
Return cases
Success cases
When the appointment 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