Share feedback
Answers are generated based on the documentation.

Schema

patchAccessTokenRequest

Type: object

is_active

Type: boolean

All schema constraints and annotations
{
  "example": false,
  "type": "boolean"
}
token_label

Type: string

All schema constraints and annotations
{
  "example": "My read only token",
  "maxLength": 100,
  "minLength": 1,
  "type": "string"
}
All schema constraints and annotations
{
  "examples": [
    {
      "is_active": false,
      "token_label": "My read only token"
    }
  ],
  "properties": {
    "is_active": {
      "example": false,
      "type": "boolean"
    },
    "token_label": {
      "example": "My read only token",
      "maxLength": 100,
      "minLength": 1,
      "type": "string"
    }
  },
  "type": "object"
}