with Buddee and Formatting?
Emit new event when an employee is updated in the system. See the documentation
Emit new event when a new employee is added to the system. See the documentation
Emit new event when a new leave request is created in the system. See the documentation
Emit new event when a new time registration is created in the system. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buddee: {
type: "app",
app: "buddee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.buddee.nl/users`,
headers: {
Authorization: `Bearer ${this.buddee.$auth.oauth_access_token}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})