MyAccount Management
/- Retrieve an Authenticator
API versioning
List all Authenticators
List all Enrollments
Retrieve an Enrollment
Update an enrollment
Retrieve an Authenticator
Identity Engine
OAuth 2.0 scope:
- okta.myAccount.authenticators.read
Retrieves an authenticator by authenticatorId
Includes associated authenticator details in the _embedded attribute
| Enum Value | Description |
|---|---|
| enrollments | Returns the list of authenticator enrollments associated with the authenticator |
| requirements | Returns the list of password requirements associated with the authenticator |
Example:expand=enrollments
Examples:
Expand to include authenticator enrollment details
expand=enrollmentsExpand to include password requirements
expand=requirementsGET
curl -i -X GET \
'https://subdomain.okta.com/idp/myaccount/authenticators/aut9gnvcjUHIWb37J0g4?expand=enrollments' \
-H 'Accept: application/json; okta-version=1.0.0'Authenticator
An Okta server key that identifies the authenticator
Enum:"custom_app""custom_otp""duo""external_idp""google_otp""okta_email""okta_password""okta_verify""onprem_mfa""phone_number"
Response
- Password authenticator
- Security key authenticator
- External IdP authenticator
- Okta Verify FastPass authenticator
- Okta Verify Push authenticator
- Okta Verify TOTP authenticator
{ "id": "aut3jiaiZukD4Ta0Z0g5", "key": "okta_password", "name": "Okta password", "enrollable": true, "_links": { "self": { … }, "enroll": { … }, "enrollments": { … }, "requirements": { … } } }