Skip to content

Commit

Permalink
Merge pull request #542 from RafaelJohn9/zapier_doc
Browse files Browse the repository at this point in the history
Doc: Added some relevant documentation on zapier that will trigger a fix
  • Loading branch information
cobycloud authored Sep 26, 2024
2 parents 8adb877 + 1417277 commit 006856c
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@
from pydantic import Field


"""
- Zapier's webhooks do not require authentication for basic usage,
as they are designed to be secure via their unique URLs.
- The webhook URL (https://hooks.zapier.com/hooks/catch/{zap_id}/) includes
a randomly generated identifier that is private to you,
ensuring that only those with the specific URL can trigger the Zap.
Reference
---------------
- https://www.switchlabs.dev/resources/locating-your-webhook-url-in-zapier
- https://zapier.com/apps/webhook/integrations
- https://zapier.com/engineering/webhook-design/
"""


class ZapierHookTool(ToolBase):
version: str = "1.0.0"
parameters: List[Parameter] = Field(
Expand Down

0 comments on commit 006856c

Please sign in to comment.