Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.53 KB

File metadata and controls

32 lines (23 loc) · 1.53 KB

InlineHookChannelConfig

Properties of the communications channel that are used to contact your external service

Properties

Name Type Description Notes
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_channel_config import InlineHookChannelConfig

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

# convert the object into a dict
inline_hook_channel_config_dict = inline_hook_channel_config_instance.to_dict()
# create an instance of InlineHookChannelConfig from a dict
inline_hook_channel_config_from_dict = InlineHookChannelConfig.from_dict(inline_hook_channel_config_dict)

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