Middesk makes it easy to build custom applications on top of its robust API. With Middesk, you can easily create custom applications to automate your business processes. Here are some examples of what you can build using the Middesk API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
middesk: {
type: "app",
app: "middesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.middesk.com/v1/webhooks`,
auth: {
username: `${this.middesk.$auth.api_key}`,
password: ``,
},
})
},
})
Middesk uses API keys for authentication. When you connect your Middesk account, Pipedream securely stores the keys so you can easily authenticate to Middesk APIs in both code and no-code steps.