Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25880,6 +25880,7 @@ components:
A boolean value indicating if the User has Two Factor Authentication (TFA)
enabled. See the Create Two Factor Secret ([POST /profile/tfa-enable](/docs/api/profile/#two-factor-secret-create))
endpoint to enable TFA.
example: true
verified_phone_number:
type: string
format: phone
Expand All @@ -25902,6 +25903,33 @@ components:

`null` if this User has not created a password yet.
example: "2018-01-01T01:01:01"
last_login:
type: object
readOnly: true
nullable: true
description: |
Information for the most recent login attempt for this User.

`null` if no login attempts have been made since creation of this User.

Access the [User Logins List All](/docs/api/account/#user-logins-list-all) command for additional login information.
properties:
login_datetime:
type: string
format: date-time
readOnly: true
description: |
The date and time of this User's most recent login attempt.
example: "2018-01-01T01:01:01"
status:
type: string
readOnly: true
enum:
- successful
- failed
description: |
The result of the most recent login attempt for this User.
example: successful
UserDefinedField:
type: object
required:
Expand Down