You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enables or disables webhook from showing in the Rule Builder.
authentication_id
int
The ID of the credential that this webhook is using.
[optional]
outgoing_integration_template_id
int
Identifier of the outgoing integration template.
[optional]
outgoing_integration_type_id
int
Identifier of the outgoing integration type.
[optional]
outgoing_integration_type_name
str
Name of the outgoing integration.
[optional]
Example
fromtalon_one.models.webhook_with_outgoing_integration_detailsimportWebhookWithOutgoingIntegrationDetails# TODO update the JSON string belowjson="{}"# create an instance of WebhookWithOutgoingIntegrationDetails from a JSON stringwebhook_with_outgoing_integration_details_instance=WebhookWithOutgoingIntegrationDetails.from_json(json)
# print the JSON string representation of the objectprint(WebhookWithOutgoingIntegrationDetails.to_json())
# convert the object into a dictwebhook_with_outgoing_integration_details_dict=webhook_with_outgoing_integration_details_instance.to_dict()
# create an instance of WebhookWithOutgoingIntegrationDetails from a dictwebhook_with_outgoing_integration_details_from_dict=WebhookWithOutgoingIntegrationDetails.from_dict(webhook_with_outgoing_integration_details_dict)