Contribute Points
Contributes points to the joined guild.
Source Code
playNANOOHandlers.guildPersonalPoint = function(args) {
var result = plugin['v20230101'].guild.personalPoint({
parameters: {
tableCode: args.tableCode,
point: args.point,
extraData: args.extraData,
}
});
if(result.statusCode == 200) {
log.debug(result.body.toString());
return true;
} else {
return false;
}
}
Request Parameter
| Parameter | Description | Type |
|---|---|---|
| tableCode | Table code | string |
| point | Contribution points | integer |
| extraData | Additional data | string |
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}