loadGuestProfile
This method loads an empty profile for a headset. You can use this method to quickly load a profile, without having to create a profile with setupProfile.
Name | Type | Required | Description |
cortexToken | string | yes | |
headset | string | yes |
The result is an object containing these fields:
Name | Type | Description |
action | string | Is always "load". |
name | string | Is always "Guest Profile". |
message | string | A success message. |
Request
Response
{
"id": 1,
"jsonrpc": "2.0",
"method": "loadGuestProfile",
"params": {
"cortexToken": "xxx",
"headset": "INSIGHT-12341234"
}
}
{
"id": 1,
"jsonrpc": "2.0",
"result": {
"action": "load",
"name": "Guest Profile",
"message": "..."
}
}
Last modified 23d ago