Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.54 KB

File metadata and controls

30 lines (21 loc) · 1.54 KB

UserFactorVerifyRequest

Sends an asynchronous push notification to the device for approval by the user. A successful request returns an HTTP 201 response, unlike other factors. You must poll the transaction to determine the state of the verification. See Retrieve a factor transaction status.

Properties

Name Type Description Notes
use_number_matching_challenge bool Select whether to use a number matching challenge for a `push` factor. > Note: Sending a request with a body is required when you verify a `push` factor with a number matching challenge. [optional]

Example

from okta.models.user_factor_verify_request import UserFactorVerifyRequest

# TODO update the JSON string below
json = "{}"
# create an instance of UserFactorVerifyRequest from a JSON string
user_factor_verify_request_instance = UserFactorVerifyRequest.from_json(json)
# print the JSON string representation of the object
print(UserFactorVerifyRequest.to_json())

# convert the object into a dict
user_factor_verify_request_dict = user_factor_verify_request_instance.to_dict()
# create an instance of UserFactorVerifyRequest from a dict
user_factor_verify_request_from_dict = UserFactorVerifyRequest.from_dict(user_factor_verify_request_dict)

[Back to Model list] [Back to API list] [Back to README]