Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.58 KB

Webhook.md

File metadata and controls

37 lines (28 loc) · 1.58 KB

Webhook

Properties

Name Type Description Notes
active bool Boolean to indicate if the webhook is active [optional]
created_at datetime [optional] [readonly]
delivery WebhookDelivery
response WebhookResponse
secret str A 24-character secret for the webhook. It's generated by Firefly III when saving a new webhook. If you submit a new secret through the PUT endpoint it will generate a new secret for the selected webhook, a new secret bearing no relation to whatever you just submitted. [optional] [readonly]
title str A title for the webhook for easy recognition.
trigger WebhookTrigger
updated_at datetime [optional] [readonly]
url str The URL of the webhook. Has to start with `https`.

Example

from firefly_iii_client.models.webhook import Webhook

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

# convert the object into a dict
webhook_dict = webhook_instance.to_dict()
# create an instance of Webhook from a dict
webhook_form_dict = webhook.from_dict(webhook_dict)

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