Connecteam: The World's #1 Employee App
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
connecteam: {
type: "app",
app: "connecteam",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.connecteam.com/me`,
headers: {
"X-API-KEY": `${this.connecteam.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})