-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit 'Merge pull request #27 from sailpoint/NEROCKET-965
NEROCKET-965 added locale to user API specs.' by github action: 9100711617
- Loading branch information
1 parent
783f479
commit 231c057
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,34 +4,60 @@ properties: | |
type: string | ||
format: uuid | ||
readonly: true | ||
example: db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e | ||
description: ID of the object to retrieve or update | ||
uid: | ||
type: string | ||
minLength: 32 | ||
maxLength: 32 | ||
readonly: true | ||
example: user1 | ||
description: UID of the user | ||
name: | ||
type: string | ||
description: The name | ||
example: myusername | ||
email: | ||
type: string | ||
format: email | ||
description: The email | ||
example: [email protected] | ||
type: | ||
type: string | ||
enum: [NeprofileUser, NeaccessUser] | ||
default: NeprofileUser | ||
description: Type of user | ||
example: NeprofileUser | ||
title: | ||
type: string | ||
description: The title | ||
example: Director | ||
status: | ||
type: string | ||
enum: [Active, Disabled] | ||
description: Status of the user | ||
example: Active | ||
login: | ||
type: string | ||
type: string | ||
description: The login | ||
example: myLogin | ||
last_login: | ||
type: string | ||
format: date-time | ||
readOnly: true | ||
description: When the user last logged in | ||
example: Wed, 07 Feb 2024 12:55:20.456682000 EST -05:00 | ||
cookies_accepted_at: | ||
type: string | ||
format: date-time | ||
readOnly: true | ||
description: When cookies were accepted | ||
example: Wed, 07 Feb 2024 12:55:20.456682000 EST -05:00 | ||
preferred_language: | ||
type: string | ||
type: string | ||
description: The locale the user prefers to use | ||
example: fr-CA | ||
locale: | ||
type: string | ||
description: The locale the user prefers to use | ||
example: fr-CA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters