Trusted by 250,000+ developers from startups to Fortune 500 companies:
This is a pre-built, open source component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.
To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.
Create Pipe on Pipefy
Description:Creates a pipe.
Version:0.3.1
Key:pipefy-create-pipe
import { axios } from "@pipedream/platform";
export default {
key: "pipefy-create-pipe",
name: "Create Pipe",
description: "Creates a pipe.",
version: "0.3.1",
type: "action",
props: {
pipefy: {
type: "app",
app: "pipefy",
},
graphql_mutation: {
type: "object",
description: "A graphql mutation as per [CreatePipe](https://api-docs.pipefy.com/reference/mutations/createPipe/) specification.",
},
},
async run({ $ }) {
if (!this.graphql_mutation) {
throw new Error("Must provide graphql_mutation parameter.");
}
return await axios($, {
method: "post",
url: "https://api.pipefy.com/graphql",
headers: {
Authorization: `Bearer ${this.pipefy.$auth.token}`,
},
data: this.graphql_mutation,
});
},
};
This component may be configured based on the props
defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
Label | Prop | Type | Description |
---|
Pipefy | pipefy | app | This component uses the Pipefy app. |
| graphql_mutation | object | A graphql mutation as per CreatePipe specification.
|
Pipefy uses API keys for authentication. When you connect your Pipefy account, Pipedream securely stores the keys so you can easily authenticate to Pipefy APIs in both code and no-code steps.
To authorize requests to the Pipefy API, you'll need to generate a Personal access token. In order to create Pipefy triggers in Pipedream, you will need to be a Pipefy administrator.
Process Management, Workflow Management Software