Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.95 KB

File metadata and controls

35 lines (26 loc) · 1.95 KB

InlineHookOAuthBasicConfig

Properties

Name Type Description Notes
auth_type str [optional]
client_id str A publicly exposed string provided by the service that's used to identify the OAuth app and build authorization URLs [optional]
scope str Include the scopes that allow you to perform the actions on the hook endpoint that you want to access [optional]
token_url str The URI where inline hooks can exchange an authorization code for access and refresh tokens [optional]
headers List[InlineHookChannelConfigHeaders] An optional list of key/value pairs for headers that you can send with the request to the external service [optional]
method str The method of the Okta inline hook request [optional]
uri str The external service endpoint that executes the inline hook handler. It must begin with `https://` and be reachable by Okta. No white space is allowed in the URI. [optional]

Example

from okta.models.inline_hook_o_auth_basic_config import InlineHookOAuthBasicConfig

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

# convert the object into a dict
inline_hook_o_auth_basic_config_dict = inline_hook_o_auth_basic_config_instance.to_dict()
# create an instance of InlineHookOAuthBasicConfig from a dict
inline_hook_o_auth_basic_config_from_dict = InlineHookOAuthBasicConfig.from_dict(inline_hook_o_auth_basic_config_dict)

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