Get Organization OAuth Application By Organization ID And Application ID
DescriptionRetrieves information about a specified OAuth App within an organization.
Request
URLURL
Path Parameters
Path Parameters
Unique identifier (GUID) of the organization.
The unique identifier of the OAuth Application (client).
Authentication
Response
Response BodyResponse Body
200 OK
{
"accessTokenTTL": 0,
"allowedScopes": {
"generalScopes": [
"string"
],
"organizationScopes": {
"roles": [
{
"name": "string"
}
]
},
"servicesScopes": [
{
"allRoles": false,
"roles": [
{
"name": "string"
}
],
"serviceDefinitionId": "string"
}
]
},
"createdAt": 0,
"description": "string",
"displayName": "string",
"grantTypes": [
"string"
],
"id": "string",
"lastUpdatedAt": 0,
"ownerOnlySecretRotation": false,
"secretRotationExpirationInSeconds": 0
}
The organization OAuth Application access token time to live in seconds.
The allowed general, organization and service scopes of access.
Timestamp indicating when the organization OAuth Application was created.
The description of organization OAuth Application.
The organization OAuth Application display name.
The list of OAuth grant types.
The unique identifier of the OAuth Application.
Timestamp indicating when the organization OAuth Application was updated.
When set to ’true’, the client is not allowed to rotate its own secret.By default, client is enabled to self-rotate its secret
The secret rotation expiration in seconds. The old OAuth Application secret will expire after it.