import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
actitime: {
type: "app",
app: "actitime",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.actitime.$auth.url}/api/v1/users`,
auth: {
username: `${this.actitime.$auth.email}`,
password: `${this.actitime.$auth.password}`,
},
})
},
})
Emit new event when a new customer is created. See the documentation.
Emit new event when a new task is created. See the documentation.
Emit new event when the user's working time is updated. See the documentation.
Changes the existing leave time record with a given value in actiTIME. See the documentation.
actiTIME uses API keys for authentication. When you connect your actiTIME account, Pipedream securely stores the keys so you can easily authenticate to actiTIME APIs in both code and no-code steps.
actiTIME requires their users enter their actiTIME email and password in order to connect to their API. For more info, refer to actiTIME’s documentation.
Pipedream recommends using a strong and unique password for your actiTIME account.