Roku · Schema

PersonalAccessTokenCreated

Response when a new PAT is created - includes the actual token

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
token string The actual token - save this, it won't be shown again!
token_info object
View JSON Schema on GitHub

JSON Schema

nabu-cloud-personal-access-token-created-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-schema/nabu-cloud-personal-access-token-created-schema.json",
  "title": "PersonalAccessTokenCreated",
  "description": "Response when a new PAT is created - includes the actual token",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "maxLength": 2048,
      "minLength": 1,
      "title": "Token",
      "description": "The actual token - save this, it won't be shown again!"
    },
    "token_info": {
      "$ref": "#/components/schemas/PersonalAccessTokenOut"
    }
  },
  "required": [
    "token",
    "token_info"
  ]
}