IntegrationsOktaActions
List Okta groups
List groups in the connected Okta org.
groups.list · Okta · v1
Details
Scopes
okta.groups.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 200 |
cursor | string | No | minLength 1; maxLength 512 |
name | string | No | minLength 1; maxLength 256 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
groups | array<object> | Yes | maxItems 200 |
groups[] | object | Yes | additionalProperties false |
groups[].id | string | Yes | minLength 1; maxLength 128 |
groups[].type | string | Yes | enum OKTA_GROUP | APP_GROUP | BUILT_IN |
groups[].name | string | Yes | minLength 1; maxLength 256 |
groups[].description | string | No | maxLength 1024 |
groups[].created_at | string | No | minLength 1; maxLength 64 |
groups[].updated_at | string | No | minLength 1; maxLength 64 |
groups[].last_membership_updated_at | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 200
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"groups": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"type": {
"type": "string",
"enum": [
"OKTA_GROUP",
"APP_GROUP",
"BUILT_IN"
]
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"description": {
"type": "string",
"maxLength": 1024
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"updated_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_membership_updated_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id",
"type",
"name"
]
},
"maxItems": 200
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"groups"
]
}