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.
Card Done (Instant) on Pipefy
Description:Emits an event each time a card is moved to Done a Pipe.
Version:0.0.2
Key:pipefy-card-done
const common = require("../common-webhook.js");
module.exports = {
...common,
name: "Card Done (Instant)",
key: "pipefy-card-done",
description: "Emits an event each time a card is moved to Done a Pipe.",
version: "0.0.2",
methods: {
...common.methods,
getActions() {
return ["card.done"];
},
getMeta(card, cardData) {
return {
body: { card, cardData },
id: `${card.id}${Date.now()}`,
summary: `${card.title} Done`,
};
},
},
};
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. |
N/A | db | $.service.db | This component uses $.service.db to maintain state between component invocations. |
Pipe ID | pipeId | integer | ID of the Pipe, found in the URL when viewing the Pipe.
|
N/A | http | $.interface.http | This component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component. |
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