Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.58 KB

File metadata and controls

32 lines (24 loc) · 1.58 KB

SamlAssert

Properties

Name Type Description Notes
username_or_email str Set this to the username or email of the OneLogin user accessing the app for which you want to generate a SAML token.
password str Password of the OneLogin user accessing the app for which you want to generate a SAML token.
app_id str App ID of the app for which you want to generate a SAML token. This is the app ID in OneLogin.
subdomain str Set to the subdomain of the OneLogin user accessing the app for which you want to generate a SAML token.
ip_address str If you are using this API in a scenario in which MFA is required and you’ll need to be able to honor IP address whitelisting defined in MFA policies, provide this parameter and set its value to the whitelisted IP address that needs to be bypassed. [optional]

Example

from onelogin.models.saml_assert import SamlAssert

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

# convert the object into a dict
saml_assert_dict = saml_assert_instance.to_dict()
# create an instance of SamlAssert from a dict
saml_assert_form_dict = saml_assert.from_dict(saml_assert_dict)

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