import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
terminus_app: {
type: "app",
app: "terminus_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.terminusapp.com/v1/projects`,
auth: {
username: `${this.terminus_app.$auth.api_key}`,
password: ``,
},
})
},
})
Terminus App uses API keys for authentication. When you connect your Terminus App account, Pipedream securely stores the keys so you can easily authenticate to Terminus App APIs in both code and no-code steps.
To retrieve your API Keys,