Fibery is a versatile work management platform, and its API amplifies this versatility within Pipedream's environment. Leveraging the Fibery API on Pipedream, you can automate complex workflows that span across project management, product development, and collaborative functions. This includes actions like syncing issues across platforms, aggregating feedback into product roadmaps, or updating project timelines based on external triggers. With Pipedream, you can listen for webhooks, schedule tasks, and seamlessly connect Fibery with other apps to create a dynamic, interconnected workspace.
module.exports = defineComponent({
props: {
fibery: {
type: "app",
app: "fibery",
}
},
async run({steps, $}) {
return (await require("@pipedream/platform").axios($, {
method: "post",
url: `https://${this.fibery.$auth.account_name}.fibery.io/api/commands`,
headers: {
"Authorization": `Token ${this.fibery.$auth.api_key}`,
"Content-Type": `application/json`,
},
data: [
{
"command": "fibery.entity/query",
"args": {
"query": {
"q/from": "fibery/user",
"q/select": ["fibery/id", "user/name"],
"q/limit": 1
}
}
}
],
}))[0]
},
})
Sync Issues with GitHub: Automatically create or update Fibery entities when new GitHub issues are opened or updated. This keeps development tasks in sync, allowing teams using Fibery for project tracking to stay up-to-date with real-time changes in the code repository.
Aggregate Customer Feedback: Collect feedback from various sources like Zendesk, Intercom, or email, and create Fibery entities to track and prioritize customer input. This workflow enables product teams to integrate user feedback directly into their planning and development processes in Fibery.
Content Calendar Automation: When a new blog post is published in WordPress, trigger an update in Fibery to mark the content piece as 'Published' in the editorial calendar. This ensures real-time content tracking and aligns marketing efforts with actual content deployments.
Emit new event for every updated entity of a certain type. See the docs here
Emit new event for every created entity of a certain type. See the docs here
Creates a new entity or updates if it exists. See the docs here
Get an entity or create one if it doesn't exist. See the docs here
Fibery uses API keys for authentication. When you connect your Fibery account, Pipedream securely stores the keys so you can easily authenticate to Fibery APIs in both code and no-code steps.
First, enter your Fibery account name. Your account name is the host portion of your workspace URL: [ACCOUNT NAME].fibery.io
.
See the Fibery API docs to generate your API key. Enter that key below, as well.