with Polymer.co and Adafruit IO?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
polymer_co: {
type: "app",
app: "polymer_co",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.polymer.co/v1/hire/organizations/${this.polymer_co.$auth.org_slug}/jobs`,
headers: {
"content-type": `application/json`,
},
})
},
})
Adafruit IO is an API designed for building Internet of Things (IoT) applications. It offers a means to store, share, and manage data from your IoT devices. With Adafruit IO, you can create dashboards to display real-time data, trigger events based on data, and even control outputs. It's a versatile platform that's especially friendly for those getting started with IoT.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adafruit_io: {
type: "app",
app: "adafruit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://io.adafruit.com/api/v2/user`,
headers: {
"X-AIO-Key": `${this.adafruit_io.$auth.active_key}`,
},
})
},
})