Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

File metadata and controls

32 lines (23 loc) · 1.6 KB

EventHookChannelConfig

Properties

Name Type Description Notes
auth_scheme EventHookChannelConfigAuthScheme [optional]
headers List[EventHookChannelConfigHeader] Optional list of key/value pairs for headers that can be sent with the request to the external service. For example, `X-Other-Header` is an example of an optional header, with a value of `my-header-value`, that you want Okta to pass to your external service. [optional]
method str The method of the Okta event hook request [optional] [readonly]
uri str The external service endpoint called to execute the event hook handler

Example

from okta.models.event_hook_channel_config import EventHookChannelConfig

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

# convert the object into a dict
event_hook_channel_config_dict = event_hook_channel_config_instance.to_dict()
# create an instance of EventHookChannelConfig from a dict
event_hook_channel_config_from_dict = EventHookChannelConfig.from_dict(event_hook_channel_config_dict)

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