Skip to main content
Version: 6.0.0

ChangeViceGuildMaster

public BackndReturnObject ChangeViceGuildMaster(string gamerIndate);

Parameter

ValueTypeDescription
gamerIndatestringindate 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

Backnd.Guild.ChangeViceGuildMaster("gamerIndate");

Asynchronous

Backnd.Guild.ChangeViceGuildMaster("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