Http trigger Link? #1305
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @SudgeFunday! To obtain the endpoint that triggers your functions, you can utilize Webhooks. Webhooks serve as a means to process incoming events from external services, enabling you to receive notifications about changes in your system. By employing the Webhook Parser, you can create a function that handles the incoming request, processes it, and optionally returns an object. This object can automatically add a new row to your database. Alternatively, you can write to any location in your database by utilizing the Webhooks Rowy Docs: https://docs.rowy.io/webhooks |
Beta Was this translation helpful? Give feedback.
Hey @SudgeFunday! To obtain the endpoint that triggers your functions, you can utilize Webhooks. Webhooks serve as a means to process incoming events from external services, enabling you to receive notifications about changes in your system. By employing the Webhook Parser, you can create a function that handles the incoming request, processes it, and optionally returns an object. This object can automatically add a new row to your database. Alternatively, you can write to any location in your database by utilizing the
db
parameter orref
to directly reference the collection in your table.Webhooks Rowy Docs: https://docs.rowy.io/webhooks