Verify an Authentication Factor
Use this API to verify completion of OneLogin Push or OneLogin Voice factors.
Early Preview
This API is in early preview and may be subject to change. Please refer to our V1 API for current production use.
Resource URL
https://<api-domain>/api/2/mfa/users/<user_id>/verifications/<verification_id>
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 either of the following scopes: |
Resource Parameters
user_id required integer |
Set to the If you don’t know the user’s |
verification_id required integer |
The |
Pending user action to confirm push notification or OneLogin Voice call
- 200 OK
- 401 Unauthorized
- 404 Not Found
[
{
"id": "406fefd4-8a36-4aee-880c-f3e4a928e27d",
"status": "pending",
"device_id": "3919988"
}
]
{
"status": {
"error": true,
"code": 401,
"type": "Unauthorized",
"message": "Authentication Failure"
}
}
{
"statusCode": 404,
"name": "NotFound",
"message": "The resource can't be found or the server has not found anything matching the Request-URI"
}
User has accepted push notification or OneLogin Voice call
- 200 OK
- 401 Unauthorized
- 404 Not Found
[
{
"id": "406fefd4-8a36-4aee-880c-f3e4a928e27d",
"status": "accepted",
"device_id": "3919988"
}
]
{
"status": {
"error": true,
"code": 401,
"type": "Unauthorized",
"message": "Authentication Failure"
}
}
{
"statusCode": 404,
"name": "NotFound",
"message": "The resource can't be found or the server has not found anything matching the Request-URI"
}
Response Elements
id |
Registration identifier. |
status |
pending = has not been completed. accepted registration has successfully completed, rejected user has denied the MFA attempt or incorrectly provided the OneLogin Voice OTP code. |
device_id |
Device id to be used with Verify the Factor . |
Postman Collection
Replace sample variables indicated by {{ }}
with your actual values.
Download for the MFA API
Sample Code
cURL
Replace sample values indicated by < >
with your actual values.
curl 'https://<api-domain>/api/2/mfa/users/<user_id>/verifications/<verification_id>' \
-X GET \
-H "Authorization: bearer: <access_token>" \
Have a Question?

Have a how-to question? Seeing a weird error? Ask us about it on StackOverflow.

Found a bug? Submit a support ticket.

Have a product idea or request? Share it with us in our Ideas Portal.
StackOverflow discussions about "[onelogin] mfa api"
-
Q: AWS API credentials with OneLogin SAML and MFA
Asked Oct 30 2016We want to allow our users to retrieve a set of temporary CLI credentials for a given AWS role by signing in to OneLogin with password and MFA. … We have a working solution, but it requires the user to fully re-authenticate to OneLogin (including MFA) every 60 minutes as the AWS temporary credentials expire. …
-
Q: Implement custom connector to in-house applications
Asked Dec 05 2016Basically the company I work at wants to implement a "login using OneLogin" to our in-house applications and we have MFA enabled. … I tried the API route but it requires the user to enter the MFA code every time they want to log in, which is great for security but users want simple solution. …
-
Q: Getting a SAML assertion after creating a session via API
Asked Apr 04 2017Related to Accessing Third Party Apps After Creating A Session Via API Token and to AWS API credentials with OneLogin SAML and MFA Since AWS assumeRoleWithSAML temporary security credentials are only … It's totally odd to the web base OneLogin usage, where he is logged in once for the whole day or even week (depending on the policy). I know how to get a session via API. …
-
A: Getting a SAML assertion after creating a session via API
Answered Apr 05 2017The "assume user" privilege is locked down pretty tightly in OneLogin, and is not the sort of thing that's given out lightly. … This wouldn't allow for MFA on an app policy, but we are building out the ability to request and verify MFA via API (coming soon) so you could implement MFA in your app (independent of any app policy) …
-
Q: Onelogin API - Verify Factor for SAML assertion when using Duo
Asked Oct 11 2017I've been developing an application that hits the api/1/saml_assertion, https://developers.onelogin.com/api-docs/1/saml-assertions/generate-saml-assertion , endpoint of OneLogin with Duo as my MFA. … duo_sig_request looks like this: 'duo_sig_request': 'TX|<base64 encoded elements>|<what looks like a sha1 hash>:APP|<base64 encoded elements>|<what looks like a sha1 hash>' duo_api_hostname is just the API …

Loading...