For the complete documentation index, see llms.txt. This page is also available as Markdown.

Access Keys

Create, disable and delete the access keys that authenticate you to the Remote.It API. Secret keys cannot be retrieved once lost.

Access keys are used to authenticate you with our API. You can create a new key or delete an existing key at any time. You can also temporarily disable a key.

Creating an Access Key

mutation {
  createAccessKey {
    key
    secret
  }
}

Response Example

{
  "data": {
    "createAccessKey": {
      "key": "YX62XXXXXXXXXX6YB",
      "secret": "XXXXXXXXXXXXXX"
    }
  }
}

Disable/Enable an Access Key

This request will disable/enable an existing access key. Arguments must pass the access key id (not the secret) and enabled as a boolean

Response Example

Delete an Access Key

This mutation will delete the access key permanently.

Response Example

Last updated

Was this helpful?