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`,
},
})
},
})
Automate Feedback Collection Post-Project: Trigger a workflow in Pipedream when a project in your project management tool (like Jira) is marked complete. Use the Small Improvements API to request feedback for team members involved in the project, streamlining the review process and ensuring timely responses.
Sync Performance Reviews to HRIS: After a performance review cycle is completed in Small Improvements, use Pipedream to send the review data to your Human Resources Information System (HRIS), such as BambooHR. This workflow ensures that performance data is centralized, aiding in broader HR processes and analytics.
Goal Tracking with Calendar Integration: When goals are updated or new goals are set in Small Improvements, Pipedream can automatically create or update events in a Google Calendar dedicated to tracking key objectives. This keeps everyone aligned and informed about progress and upcoming goal assessments.
Create meeting notes in Small Improvements. See the documentation
List all users from Small Improvements. See the documentation
Small Improvements uses API keys for authentication. When you connect your Small Improvements account, Pipedream securely stores the keys so you can easily authenticate to Small Improvements APIs in both code and no-code steps.
Generate and copy your API Token from Personal Access Tokens under your user settings.