FogBugz project management software helps you spend less time on managing, and more on creating your digital masterpiece. Align your team under a common purpose that allows you to plan, track and release great software.
Go to siteThe FogBugz API allows you to interact with your FogBugz software development tracking system programmatically. With this API, you can create, read, update, and delete cases; manage projects, areas, and categories; and perform searches to gather data-driven insights. Integrating FogBugz with Pipedream opens up possibilities for automating workflows, syncing data across platforms, and reacting to events within FogBugz in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fogbugz: {
type: "app",
app: "fogbugz",
}
},
async run({steps, $}) {
const data = {
"cmd": `listPeople`,
"token": `${this.fogbugz.$auth.api_token}`,
}
return await axios($, {
method: "post",
url: `https://${this.fogbugz.$auth.your_site}.fogbugz.com/f/api/0/jsonapi`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
Automated Bug Reporting: When a new bug is reported in your product through another platform, like Sentry or GitHub, you can automatically create a corresponding case in FogBugz using Pipedream. This ensures that bugs are tracked and managed efficiently without manual intervention.
Project Management Enhancement: Sync FogBugz cases to a Trello board or a Google Sheet to provide additional project management views. Each time a case is updated in FogBugz, Pipedream can move a Trello card to a different list or update a row in Google Sheets, keeping all project stakeholders in sync with development progress.
Customer Support Integration: Connect your customer support platform, such as Zendesk, to FogBugz via Pipedream. When a support ticket in Zendesk is flagged as a bug, automatically create a case in FogBugz and link the two, streamlining the process of tracking and resolving customer-reported issues.
Emit new event instantaneously when something significant happens to a case.
Emit new new event when there's a new case under a specified filter. Note this may not effectively work for filters that generate results too long, or filters with more than 50,000 cases, especially if your FogBugz site is running Ocelot.
Emit new event when a new person or a user is created in FogBugz. It effectively tracks the addition of new users in the system.
Gets a list of projects in FogBugz. This can be used to quickly view all projects and their details. See the documentation
FogBugz uses API keys for authentication. When you connect your FogBugz account, Pipedream securely stores the keys so you can easily authenticate to FogBugz APIs in both code and no-code steps.