Backlog is a project management tool that enables developers to track and manage their work. The Backlog API allows developers to programmatically access and manipulate their Backlog data. With the Backlog API, developers can build tools and applications that automate and streamline their Backlog workflow.
Some examples of what you can build with the Backlog API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
backlog_api: {
type: "app",
app: "backlog_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://xx.backlog.com/api/v2/users/myself`,
params: {
apiKey: `${this.backlog_api.$auth.api_key}`,
},
})
},
})
Backlog (API) uses API keys for authentication. When you connect your Backlog (API) account, Pipedream securely stores the keys so you can easily authenticate to Backlog (API) APIs in both code and no-code steps.
Append your API key to the API requests to return data from your account.