starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,67 @@
---
id: v2024-auth-user
title: AuthUser
pagination_label: AuthUser
sidebar_label: AuthUser
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AuthUser', 'V2024AuthUser']
slug: /tools/sdk/python/v2024/models/auth-user
tags: ['SDK', 'Software Development Kit', 'AuthUser', 'V2024AuthUser']
---
# AuthUser
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**tenant** | **str** | Tenant name. | [optional]
**id** | **str** | Identity ID. | [optional]
**uid** | **str** | Identity's unique identitifier. | [optional]
**profile** | **str** | ID of the auth profile associated with the auth user. | [optional]
**identification_number** | **str** | Auth user's employee number. | [optional]
**email** | **str** | Auth user's email. | [optional]
**phone** | **str** | Auth user's phone number. | [optional]
**work_phone** | **str** | Auth user's work phone number. | [optional]
**personal_email** | **str** | Auth user's personal email. | [optional]
**firstname** | **str** | Auth user's first name. | [optional]
**lastname** | **str** | Auth user's last name. | [optional]
**display_name** | **str** | Auth user's name in displayed format. | [optional]
**alias** | **str** | Auth user's alias. | [optional]
**last_password_change_date** | **str** | Date of last password change. | [optional]
**last_login_timestamp** | **int** | Timestamp of the last login (long type value). | [optional]
**current_login_timestamp** | **int** | Timestamp of the current login (long type value). | [optional]
**capabilities** | **[]str** | Array of the auth user's capabilities. | [optional]
}
## Example
```python
from sailpoint.v2024.models.auth_user import AuthUser
auth_user = AuthUser(
tenant='test-tenant',
id='2c91808458ae7a4f0158b1bbf8af0628',
uid='will.smith',
profile='2c91808458ae7a4f0158b1bbf8af0756',
identification_number='19-5588452',
email='william.smith@example.com',
phone='5555555555',
work_phone='5555555555',
personal_email='william.smith@example.com',
firstname='Will',
lastname='Smith',
display_name='Will Smith',
alias='will.smith',
last_password_change_date='2021-03-08T22:37:33.901Z',
last_login_timestamp=1656327185832,
current_login_timestamp=1656327185832,
capabilities=[
'ORG_ADMIN'
]
)
```
[[Back to top]](#)