Definitions

AccessRequest

Access Token request

NameDescriptionSchema
grantTyperequiredThe grand type.enum (password, refresh_token)
passwordoptionalThe subject’s password.
Length : 0 - 80Pattern : "(?=.\\d)(?=.)[A-Za-z\\d!@.#$%&*+_?&=\\-]{8,}$"
string
refreshTokenoptionalThe refresh token.
Length : 0 - 2048Pattern : "^\[a-zA-Z0-9\\-]+?\\.\[a-zA-Z0-9\\-]+?\\.(\[a-zA-Z0-9\\-\_]+)?$"
string
usernameoptionalThe subject (username) that should be authorized.
Length : 0 - 36Pattern : "^\[a-zA-Z0-9\\-]+$"
string

AccessResponse

NameDescriptionSchema
accessToken
optional
The access token.string
expiresIn
optional
Seconds until the Access token expires.string
refreshToken
optional
The refresh token.string
responseInfo
optional
ResponseInfo

IntrospectForm

NameDescriptionSchema
token
required
The token to introspect.\
Pattern : "^\[A-Za-z0-9-=]+\\.\[A-Za-z0-9-=]+\\.\[A-Za-z0-9-\_.+/=]+$"
string

IntrospectResponse

NameDescriptionSchema
active
required
Boolean indicator of whether or not the presented token is currently active.boolean
ati
optional
This value is a CaSe-SenSiTiVe unique identifier for the AccessToken linked to the refresh token.string (uuid)
azp
optional
Authorized party - the party to which the ID Token was issued.string
exp
required
Integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token will expire.integer (int64)
jti
required
This value is a CaSe-SenSiTiVe unique identifier for the JWT.string (uuid)
responseInfo
optional
ResponseInfo
sub
required
The Subject/Client_Id that requested the token.string

ResponseInfo

Info object that can provide specific messages

NameDescriptionSchema
externalResponseCode
optional
Additional response code from external systems.string
message
optional
Specific response messagestring
responseCode
required
string
timeStamp
required
Timestamp. Mandatory
Example : "2021-12-21T10:23:19.279Z"
string

Status

NameSchema
description
optional
string
status
optional
string

Did this page help you?