With the 10,000ft API, you can build applications that:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_10000ft: {
type: "app",
app: "_10000ft",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.10000ft.com/api/v1/users `,
headers: {
"auth": `${this._10000ft.$auth.token}`,
},
params: {
"Content-Type": `application/json`,
},
})
},
})
10,000ft by Smartsheet uses API keys for authentication. When you connect your 10,000ft by Smartsheet account, Pipedream securely stores the keys so you can easily authenticate to 10,000ft by Smartsheet APIs in both code and no-code steps.