Frontegg · Schema

CreateUserAccessTokenRequest

JSON Schema for Frontegg identity CreateUserAccessTokenRequest entity, derived from the published OpenAPI specification.

AuthenticationAuthorizationIdentity ManagementCIAMB2B SaaSMulti-TenancyRBACSSOSCIMEntitlementsOAuthOpenID Connect

Properties

Name Type Description
description string
expiresInMinutes number Token expiration time in minutes. In case of undefined, the token won't be expired
View JSON Schema on GitHub

JSON Schema

frontegg-identity-createuseraccesstokenrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/frontegg/main/json-schema/frontegg-identity-createuseraccesstokenrequest-schema.json",
  "title": "CreateUserAccessTokenRequest",
  "description": "JSON Schema for Frontegg identity CreateUserAccessTokenRequest entity, derived from the published OpenAPI specification.",
  "type": "object",
  "properties": {
    "description": {
      "type": "string"
    },
    "expiresInMinutes": {
      "type": "number",
      "minimum": 1,
      "description": "Token expiration time in minutes. In case of undefined, the token won't be expired"
    }
  }
}