Convex · Schema

AccessToken

BackendDatabaseFunctionsReal-TimeReactiveServerlessTypeScript

Properties

Name Type Description
name string Human-readable name of the access token.
token string The token value used for API authentication. Only returned at creation time; store it securely as it cannot be retrieved later.
created_at string ISO 8601 timestamp when the token was created.
View JSON Schema on GitHub

JSON Schema

convex-accesstoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccessToken",
  "title": "AccessToken",
  "type": "object",
  "required": [
    "name",
    "token"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Human-readable name of the access token."
    },
    "token": {
      "type": "string",
      "description": "The token value used for API authentication. Only returned at creation time; store it securely as it cannot be retrieved later."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the token was created."
    }
  }
}