with Statuspage and CodeQR?
Creates a short link in CodeQR using the CodeQR API. See the documentation
Creates a new QR Code in CodeQR using the QR Codes API. See the documentation
Deletes a short link in CodeQR by linkId or externalId. See the documentation
The Statuspage API allows you to automate the management and orchestration of incident communication directly from Pipedream. With this API, you can create, update, and resolve incidents, manage maintenance events, and retrieve information about components and subscribers. It's an efficient way to ensure transparency and inform stakeholders during outages or scheduled maintenance by programmatically controlling your status pages.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
statuspage: {
type: "app",
app: "statuspage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.statuspage.io/v1/pages`,
headers: {
"Authorization": `OAuth ${this.statuspage.$auth.api_key}`,
},
})
},
})
The CodeQR API enables you to create and manage dynamic QR Codes, shorten URLs, capture leads, and track engagement through powerful analytics. By integrating CodeQR with Pipedream, you can automate the generation of QR Codes and short links across a wide range of workflows — from marketing automation to customer support — and seamlessly connect these actions to over 2,500 apps. fileciteturn3file0
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
codeqr: {
type: "app",
app: "codeqr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.codeqr.io/links/count`,
headers: {
Authorization: `Bearer ${this.codeqr.$auth.oauth_access_token}`,
},
})
},
})