Skip to main content

Contribute Points

Contributes points to the joined guild.

Source Code

playNANOOHandlers.guildPersonalPoint = function(args) {
var result = pluginGuild.personalPoint({
version : "v20220401",
parameters : {
tableCode : args.tableCode,
point : args.point
}
});

if(result.statusCode == 200) {
log.debug(result.body.toString());
return true;
} else {
return false;
}
}

Request Parameter

ParameterDescriptionType
tableCodeTable Codestring
pointContribution pointsinteger

Communication Result

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}