Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 3.19 KB

File metadata and controls

43 lines (34 loc) · 3.19 KB

AppUser

The application user object defines a user's app-specific profile and credentials for an app

Properties

Name Type Description Notes
created datetime Timestamp when the object was created [optional] [readonly]
credentials AppUserCredentials [optional]
external_id str The ID of the user in the target app that's linked to the Okta application user object. This value is the native app-specific identifier or primary key for the user in the target app. The `externalId` is set during import when the user is confirmed (reconciled) or during provisioning when the user is created in the target app. This value isn't populated for SSO app assignments (for example, SAML or SWA) because it isn't synchronized with a target app. [optional] [readonly]
id str Unique identifier for the Okta user [optional]
last_sync datetime Timestamp of the last synchronization operation. This value is only updated for apps with the `IMPORT_PROFILE_UPDATES` or `PUSH PROFILE_UPDATES` feature. [optional] [readonly]
last_updated datetime Timestamp when the object was last updated [optional] [readonly]
password_changed datetime Timestamp when the application user password was last changed [optional] [readonly]
profile Dict[str, object] Specifies the default and custom profile properties for a user. Properties that are visible in the Admin Console for an app assignment can also be assigned through the API. Some properties are reference properties that are imported from the target app and can't be configured. See profile. [optional]
scope str Indicates if the assignment is direct (`USER`) or by group membership (`GROUP`). [optional]
status AppUserStatus [optional]
status_changed datetime Timestamp when the application user status was last changed [optional] [readonly]
sync_state AppUserSyncState [optional]
embedded Dict[str, object] Embedded resources related to the application user using the JSON Hypertext Application Language specification [optional] [readonly]
links LinksAppAndUser [optional]

Example

from okta.models.app_user import AppUser

# TODO update the JSON string below
json = "{}"
# create an instance of AppUser from a JSON string
app_user_instance = AppUser.from_json(json)
# print the JSON string representation of the object
print(AppUser.to_json())

# convert the object into a dict
app_user_dict = app_user_instance.to_dict()
# create an instance of AppUser from a dict
app_user_from_dict = AppUser.from_dict(app_user_dict)

[Back to Model list] [Back to API list] [Back to README]