Access Keys
Create, disable and delete the access keys that authenticate you to the Remote.It API. Secret keys cannot be retrieved once lost.
Last updated
Was this helpful?
Was this helpful?
mutation {
updateAccessKey(key:"YX62XXXXXXXXXX6YB", enabled: false) {
key
enabled
}
}{
"data": {
"updateAccessKey": {
"key": "YX62XXXXXXXXXX6YB",
"enabled": false
}
}
}mutation {
deleteAccessKey (key: "YXXXXXXXXXXXX6YB")
}{
"data": {
"deleteAccessKey": true
}
}