import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
height: {
type: "app",
app: "height",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.height.app/users/me`,
headers: {
"Authorization": `api-key ${this.height.$auth.api_key}`,
},
})
},
})
Searches for tasks within your workspace using a text query. See the documentation
Updates a specified task within your workspace. See the documentation
Height uses API keys for authentication. When you connect your Height account, Pipedream securely stores the keys so you can easily authenticate to Height APIs in both code and no-code steps.