With the Linode API, you can build applications that:
And much more!
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
linode: {
type: "app",
app: "linode",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.linode.com/v4/account`,
headers: {
Authorization: `Bearer ${this.linode.$auth.api_token}`,
},
})
},
})
Linode uses API keys for authentication. When you connect your Linode account, Pipedream securely stores the keys so you can easily authenticate to Linode APIs in both code and no-code steps.