With the Helium Console API, you can build a variety of applications and integrations. Here are some examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
helium: {
type: "app",
app: "helium",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://console.helium.com/api/v1/devices`,
headers: {
"key": `${this.helium.$auth.api_key}`,
},
})
},
})
Helium (Console) uses API keys for authentication. When you connect your Helium (Console) account, Pipedream securely stores the keys so you can easily authenticate to Helium (Console) APIs in both code and no-code steps.
To create an account key, go to your profile on Helium Console. From the top right corner, click: Account -> Profile
.