Zero-instrumentation, 360 degree coverage of errors, outages and service degradation
Go to siteYou can use the Honeybadger API to build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
honeybadger: {
type: "app",
app: "honeybadger",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.honeybadger.io/v2/projects`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.honeybadger.$auth.api_token}`,
password: ``,
},
})
},
})
Honeybadger uses API keys for authentication. When you connect your Honeybadger account, Pipedream securely stores the keys so you can easily authenticate to Honeybadger APIs in both code and no-code steps.
Authentication to the API is performed via HTTP Basic Auth. Each request should be sent with your personal authentication token (available from your profile page) as the basic auth username value.