Is it Possible to Use Webhook Trigger in Pipedream Connect to Receive Events?

This topic was automatically generated from Slack. You can find the original thread here.

Hi I’m using pipedream connect in our application.
And we want to use Pipedream Webhook Trigger.
So in Pipedream it works like this: You create a trigger and pipedream gives you a unique URL which you can use to trigger the workflow.

In Pipedream connect is it possible to use Webhook trigger, so we can receive events just like from other triggers?

Yes, you can use a Webhook trigger in Pipedream to receive events, similar to other triggers. When you create a Webhook trigger in Pipedream, you are provided with a unique URL. You can use this URL to send HTTP requests, which will trigger the workflow. To set up a Webhook trigger in Pipedream: 1. Create a New Workflow: In your Pipedream account, create a new workflow. 2. Select a Trigger: Choose the “HTTP / Webhook” trigger. This will generate a unique URL for your workflow. 3. Use the Webhook URL: You can send HTTP requests to this URL from your application or any other service to trigger the workflow. For Pipedream Connect, you can pass a webhook_uri parameter when generating a Connect token. Pipedream will send a POST request to this URL when the user completes the connection flow or if an error occurs. This allows you to integrate Webhook triggers with Pipedream Connect. For more detailed information, you can refer to the Pipedream Connect documentation and the Pipedream REST API documentation. If you have any further questions or need assistance, feel free to reach out to Pipedream support at Support - Pipedream.

ok and how do we give our external user that unique URL? Where do we get it?

To provide your external user with a unique URL, you can use Pipedream’s Connect Link. Here’s how you can generate and share it: 1. Generate a Token: First, you’ll need to generate a short-lived token for your users. This token is essential for creating the Connect Link URL. 2. Extract the Connect Link URL: Once you have the token, extract the connect_link_url from the token response. 3. Add the App Parameter: Before sharing the URL with your user, append an app parameter to the query string. The URL should look like this: https://pipedream.com/_static/connect.html?token={token}&connectLink=true&app={appSlug} Replace {token} with the token you generated and {appSlug} with the appropriate app identifier. 4. Share the URL: You can then redirect your users to this URL or send it to them via email, SMS, or any other communication method. For a detailed tutorial on setting up Connect, you can refer to the Connect quickstart. If you need further assistance, you can visit Pipedream Support.

I mean a link from webhook bro

It seems like you’re asking about webhooks in Pipedream. If you’re looking for information on how to send events from a webhook to Pipedream, you can refer to the Pipedream REST API documentation on webhooks. Here’s a brief overview: - Pipedream supports webhooks as a way to deliver events to an endpoint you own. You can manage these webhooks at an account level. - You can send data to these webhooks using subscriptions. For example, you can run an event source that listens for specific events (like a new tweet or a GitHub star) and subscribe a webhook to this source. Pipedream will then deliver those events directly to your webhook’s URL without running a workflow. For more detailed information, you can visit the Pipedream REST API documentation. If you have any specific questions or need further assistance, feel free to ask!

I want to create a pipedream webhook in Pipedream Connect. But how do I give me users a unique URL that pipedream generates?

To create a Pipedream webhook in Pipedream Connect and provide your users with a unique URL, you can follow these steps: 1. Generate a Connect Token: First, you need to generate a short-lived token for your users. This token is essential for creating a unique URL for each user. 2. Extract the Connect Link URL: Once you have the token, extract the connect_link_url from the token response. 3. Add the App Parameter: Before returning the URL to your user, append an app parameter to the end of the query string. The URL should look like this: https://pipedream.com/_static/connect.html?token={token}&connectLink=true&app={appSlug} Replace {token} with the token you generated and {appSlug} with the appropriate app identifier. 4. Distribute the URL: You can then redirect your users to this URL or send it to them via email, SMS, or any other communication method. For more detailed instructions, you can refer to the Connect quickstart guide. If you need further assistance or encounter any issues, you can visit Pipedream Support for more support options.