Is There an Automation for Zelle?

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

Is there an automation for ZELLE?

I’m not aware of a specific Zelle integration on Pipedream at the moment. However, if you have an API or webhook for Zelle that you’d like to integrate with, you can create a custom workflow in Pipedream. If you’d like to request a new integration, you can submit your request at New Pipedream Integration Request.

is there an automation for Venmo?

I’m not aware of a specific Venmo integration on Pipedream at the moment. However, if Venmo provides an API or webhook that you’d like to integrate with, you can create a custom workflow in Pipedream. If you’d like to request a new integration, you can submit your request at New Pipedream Integration Request.

do you work with WP GraphQL?

Yes, you can work with WP GraphQL in Pipedream. You can create a custom workflow that interacts with the WP GraphQL API. To make requests to the WP GraphQL API, you can use the axios package from @pipedream/platform. Here’s an example of a Pipedream component that sends a GraphQL query to a WordPress site: import { axios } from "@pipedream/platform"; export default defineComponent({ props: { wpGraphqlUrl: { type: "string", label: "WordPress GraphQL API URL", }, query: { type: "string", label: "GraphQL Query", }, }, async run({ $ }) { const response = await axios($, { method: "POST", url: this.wpGraphqlUrl, headers: { "Content-Type": "application/json", }, data: { query: this.query, }, }); return response; }, }); Replace the wpGraphqlUrl and query props with the appropriate values for your WordPress site and desired GraphQL query.