Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.82 KB

FrontierServiceAuthenticate2Request.md

File metadata and controls

31 lines (23 loc) · 1.82 KB

FrontierServiceAuthenticate2Request

Properties

Name Type Description Notes
redirect_onstart bool If set to true, location header will be set for redirect to start auth flow [optional]
return_to str URL to redirect after successful authentication.<br/> Example:`&quot;https://frontier.example.com\&quot;&#x60; [optional]
email str Email of the user to authenticate. Used for magic links.<br/> Example:`[email protected]` [optional]
callback_url str Host which should handle the call to finish authentication flow, for most cases it could be host of frontier but in case of proxies, this will be proxy public endpoint.<br/> Example:`https://frontier.example.com/v1beta1/auth/callback&#x60; [optional]

Example

from frontier_api.models.frontier_service_authenticate2_request import FrontierServiceAuthenticate2Request

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

# convert the object into a dict
frontier_service_authenticate2_request_dict = frontier_service_authenticate2_request_instance.to_dict()
# create an instance of FrontierServiceAuthenticate2Request from a dict
frontier_service_authenticate2_request_form_dict = frontier_service_authenticate2_request.from_dict(frontier_service_authenticate2_request_dict)

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