Get Available Authentication Factors
Use this API to return a list of authentication factors that are available for user enrollment via API. This list is dependent upon the given user’s policy configuration.
Once a factor has been enrolled by a user it will no longer be returned in this request.
For a full list of factors that a user has enrolled via UI or API use the Get Enrolled Factors call.
The API supports enrollment of SMS, Voice, Email, Authenticator (TOTP), and OneLogin Protect.
Resource URL
https://<subdomain>/api/2/mfa/users/<user_id>/factors
Header Parameter
Authorization required string | Set to Set The access token must have been generated using an API credential pair created using the scope required to call this API. This API can be called using the |
Resource Parameter
user_id required integer |
Set to the If you don’t know the user’s |
Sample Response
- 200 OK
- 401 Unauthorized
[
{
"factor_id": 58958,
"name": "OneLogin Protect",
"auth_factor_name": "OneLogin"
},
{
"factor_id": 58959,
"name": "OneLogin SMS",
"auth_factor_name": "SMS"
},
{
"factor_id": 58960,
"name": "OneLogin Voice",
"auth_factor_name": "OneLogin Voice"
},
{
"factor_id": 58961,
"name": "OneLogin Email",
"auth_factor_name": "OneLogin Email"
},
{
"factor_id": 58957,
"name": "Authenticator",
"auth_factor_name": "Google Authenticator"
}
]
{
"statusCode": 401,
"name": "InvalidCredentials",
"message": "Please provide valid credentials"
}
Response Elements
|
Authentication factor name, as it appears to administrators in OneLogin. |
|
Internal use only |
factor_id |
Identifier for the factor which will be used for user enrollment |
Postman Collection
- Clicking Run in Postman button navigates to the page where you can fork the collection to your workspace. Forking the collection into your workspace will enable you to contribute to the source collection using pull requests. You can also view the collection in a public workspace if you like and even import a copy of the collection using the links present on the screen.
Sample Code
cURL
Replace sample values indicated by < >
with your actual values.
curl 'https://<subdomain>/api/2/mfa/users/<user_id>/factors' \
-X GET \
-H "Authorization: bearer: <access_token>" \
Have a Question?
Found a problem or a bug? Submit a support ticket.
Looking for walkthroughs or how-to guides on OneLogin's user and admin features? Check out the documentation in our Knowledge Base.
Have a product idea or request? Share it with us in our Ideas Portal.