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 Late on Pipefy
Description:Emits an event each time a card becomes late in a Pipe.
Version:0.0.1
Key:pipefy-card-late
const common = require("../common-polling.js");
module.exports = {
...common,
name: "Card Late",
key: "pipefy-card-late",
description: "Emits an event each time a card becomes late in a Pipe.",
version: "0.0.1",
methods: {
isCardRelevant({ node }) {
return (
node.late &&
!node.done
);
},
getMeta({ node, event }) {
const {
id: nodeId,
title: summary,
current_phase: { id: currentPhaseId },
} = node;
const id = `${nodeId}${currentPhaseId}`;
const { timestamp: ts } = event;
return {
id,
summary,
ts,
};
},
},
};
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.
|
| timer | $.interface.timer | |
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