mentalCommandGetSkillRating
This method returns the skill rating of a mental command action, or the overall mental command skill rating. This is a measure of how often you can trigger the desired action as measured in the previous trainings. A higher rating indicates stronger ability to perform that action.
Name | Type | Required | Description |
cortexToken | string | yes | |
profile | string | no | A profile name. |
session | string | no | |
action | string | no | The mental command action. If omitted, then this method returns the overall skill ratting. |
The result is a
number
that is the requested skill rating.Request
Response
{
"id": 1,
"jsonrpc": "2.0",
"method": "mentalCommandGetSkillRating",
"params": {
"cortexToken": "xxx",
"session": "xxx",
"action": "push"
}
}
{
"id": 1,
"jsonrpc": "2.0",
"result": 0.25
}
Last modified 3yr ago