deleteVirtualHeadset

This method lets you delete a virtual headset that was previously created by createVirtualHeadset.

Parameters

Name

Type

Required

Description

cortexToken

string

yes

A token returned by authorize

virtualHeadsetId

string

yes

The uuid of the virtual headset you want to delete.

Result

The result is an object with these fields:

Name

Type

Description

virtualHeadsetId

string

The uuid of the virtual headset you deleted.

message

string

A success message.

Example

{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "deleteVirtualHeadset",
  "params": {
    "cortexToken": "xxx",
    "virtualHeadsetId": "5ed162b5-a6ce-49ee-9775-cdc6be26a783"
  }
}

Last updated