Withdraw Join
Withdraws from the joined guild.
Source Code
playNANOOHandlers.guildPersonalWithdraw = function(args) {
var result = pluginGuild.personalWithdraw({
version : "v20220401",
parameters : {
tableCode : args.tableCode
}
});
if(result.statusCode == 200) {
log.debug(result.body.toString());
return true;
} else {
return false;
}
}
Request Parameter
Parameter | Description | Type |
---|---|---|
tableCode | Table Code | string |
Communication Result
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}