Simplesat is a survey tool that makes it easy for any business to collect, analyze and publish customer feedback.
The Simplesat API allows you to automate and integrate customer feedback workflows directly with your other business processes. With this API, you can seamlessly gather customer satisfaction ratings, Net Promoter Scores, and firsthand testimonials. You can trigger actions based on feedback, sync data to CRM or support tools, and analyze customer sentiment in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
simplesat: {
type: "app",
app: "simplesat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.simplesat.io/api/answers/`,
headers: {
"X-Simplesat-Token": `${this.simplesat.$auth.api_key}`,
},
})
},
})
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})