#1 QR Code Generator
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Beaconstac API can be used to develop a range of BLE-enabled applications for Android and iOS. The API can be used to build apps for beacon management, indoor navigation, targeted content delivery, and proximity-based marketing.
Some examples of applications that can be built using the Beaconstac API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
beaconstac: {
type: "app",
app: "beaconstac",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.beaconstac.com/api/2.0/qrcodes/`,
headers: {
"Authorization": `Token ${this.beaconstac.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})