IntegrationsOktaActions
Unlock Okta user
Unlock an Okta user account.
users.unlock · Okta · v1
Details
Scopes
okta.users.manage
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
status | string | Yes | minLength 1; maxLength 64 |
transitioning_to_status | string | No | minLength 1; maxLength 64 |
created_at | string | No | minLength 1; maxLength 64 |
activated_at | string | No | minLength 1; maxLength 64 |
last_login_at | string | No | minLength 1; maxLength 64 |
profile | object | Yes | additionalProperties false |
profile.login | string | Yes | minLength 1; maxLength 320 |
profile.email | string | Yes | minLength 3; maxLength 320 |
profile.first_name | string | Yes | minLength 1; maxLength 256 |
profile.last_name | string | Yes | minLength 1; maxLength 256 |
profile.display_name | string | No | minLength 1; maxLength 256 |
profile.title | string | No | maxLength 256 |
profile.department | string | No | maxLength 256 |
profile.manager_id | string | No | minLength 1; maxLength 128 |
profile.employee_number | string | No | maxLength 128 |
profile.organization | string | No | maxLength 256 |
profile.cost_center | string | No | maxLength 128 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"transitioning_to_status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"activated_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_login_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"profile": {
"type": "object",
"additionalProperties": false,
"properties": {
"login": {
"type": "string",
"minLength": 1,
"maxLength": 320
},
"email": {
"type": "string",
"minLength": 3,
"maxLength": 320
},
"first_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"last_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"display_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"title": {
"type": "string",
"maxLength": 256
},
"department": {
"type": "string",
"maxLength": 256
},
"manager_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"employee_number": {
"type": "string",
"maxLength": 128
},
"organization": {
"type": "string",
"maxLength": 256
},
"cost_center": {
"type": "string",
"maxLength": 128
}
},
"required": [
"login",
"email",
"first_name",
"last_name"
]
}
},
"required": [
"id",
"status",
"profile"
]
}