IntegrationsOktaActions
Get Okta app
Get one Okta application by id.
apps.get · Okta · v1
Details
Scopes
okta.apps.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
app_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
name | string | Yes | minLength 1; maxLength 256 |
label | string | Yes | minLength 1; maxLength 256 |
status | string | Yes | minLength 1; maxLength 64 |
sign_on_mode | string | No | maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"app_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"app_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"label": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"sign_on_mode": {
"type": "string",
"maxLength": 64
}
},
"required": [
"id",
"name",
"label",
"status"
]
}