Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.29 KB

File metadata and controls

35 lines (26 loc) · 1.29 KB

OAuthApp

Properties

Name Type Description Notes
oauthAppId String OAuth App Identifier [optional]
oauthAppName String OAuth App Name [optional]
ownerUserId Integer OAuth App owner user identifier [optional]
logoUri String OAuth App logo uri [optional]
flow FlowEnum Supported OpenID Connect flows [optional]
refreshTokenUsage RefreshTokenUsageEnum ReUse: the refresh token handle will stay the same when refreshing tokens OneTime: the refresh token handle will be updated when refreshing tokens [optional]
accessTokenLifetime Integer Timem it takes for the IdentityToken to expire in seconds [optional]
absoluteRefreshTokenLifetime Integer Maximum lifetime of a refresh token in seconds [optional]

Enum: FlowEnum

Name Value
AUTHORIZATIONCODE "AuthorizationCode"
IMPLICIT "Implicit"
HYBRID "Hybrid"
CLIENTCREDENTIALS "ClientCredentials"

Enum: RefreshTokenUsageEnum

Name Value
REUSE "ReUse"
ONETIMEONLY "OneTimeOnly"