with Small Improvements and cvr.dev?
Create meeting notes in Small Improvements. See the documentation
List all users from Small Improvements. See the documentation
The Small Improvements API allows for the automation of feedback, performance reviews, and goals within your organization. It enables interaction with Small Improvements' features, such as requesting feedback, managing users, and reviewing objectives. With Pipedream, you can harness this API to create seamless workflows that trigger actions across various applications, reacting to events in real-time, processing data, and automating repetitive tasks without writing any code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
small_improvements: {
type: "app",
app: "small_improvements",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.small-improvements.com/api/v2/users/me`,
headers: {
Authorization: `Bearer ${this.small_improvements.$auth.api_token}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cvr_dev: {
type: "app",
app: "cvr_dev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cvr.dev/api/test/apikey`,
headers: {
"Authorization": `${this.cvr_dev.$auth.api_key}`,
},
})
},
})