Effective May 1, 2026, Okta will no longer sell or renew Advanced Server Access. Existing customers must migrate to Okta Privileged Access within one year of their next scheduled renewal date to maintain service. Read the FAQ | Learn about Okta Privileged Access
Retrieves information about the User that is invoking the API
OK
{- "id": "305b1bd8-b783-4351-a2b6-204248c9ea46",
- "name": "Jason.Compson.IV",
- "team_name": "william-faulkner"
}Lists all Users for your Team
OK
{- "list": [
- {
- "team_name": "william-faulkner",
- "id": "6768ef2e-9a17-42ce-bf9a-a3a7242bd159",
- "name": "Jason.Compson.IV",
- "status": "ACTIVE",
- "details": {
- "first_name": "Jason",
- "last_name": "Compson",
- "full_name": "Jason Compson IV",
- "email": "jason.compson@example.com"
}, - "user_type": "human",
- "deleted_at": null
}, - {
- "team_name": "william-faulkner",
- "id": "a32daca7-8dde-4492-bf71-210f7aa504d3",
- "name": "Benjy.Compson",
- "status": "DISABLED",
- "details": {
- "first_name": "Benjy",
- "last_name": "Compson",
- "full_name": "Benjy Compson",
- "email": "benjy.compson@example.com"
}, - "user_type": "human",
- "deleted_at": null
}, - {
- "team_name": "william-faulkner",
- "id": "5d61bb6c-04d6-4c4c-af86-08b4cf462815",
- "name": "Quentin.Compson.III",
- "status": "DELETED",
- "details": {
- "first_name": "Quentin",
- "last_name": "Compson",
- "full_name": "Quentin Compson III",
- "email": "quentin.compson@example.com"
}, - "user_type": "human",
- "deleted_at": "1910-06-10T00:00:00Z"
}
]
}Retrieves a User from your Team
OK
{- "deleted_at": null,
- "details": {
- "email": "jason.compson@example.com",
- "first_name": "Jason",
- "full_name": "Jason Compson IV",
- "last_name": "Compson"
}, - "id": "6768ef2e-9a17-42ce-bf9a-a3a7242bd159",
- "name": "Jason.Compson.IV",
- "status": "ACTIVE",
- "team_name": "william-faulkner",
- "user_type": "human"
}Updates a User from your Team
No Content
{- "deleted_at": null,
- "details": {
- "email": "James.compson@example.com",
- "first_name": "James",
- "full_name": "James Compson IV",
- "last_name": "Compson"
}, - "id": "6768ef2e-9a17-42ce-bf9a-a3a7242bd159",
- "name": "James.Compson.IV",
- "status": "ACTIVE",
- "team_name": "william-faulkner",
- "user_type": "human"
}Lists all Groups for a specified User
OK
{- "list": [
- {
- "id": "7f9901bd-7ca8-4653-af8e-ab5c2151236c",
- "name": "compsons",
- "roles": [
- "access_user",
- "reporting_user",
- "access_admin"
], - "federated_from_team": null,
- "federation_approved_at": null,
- "deleted_at": "0001-01-01T00:00:00Z"
}
]
}