AI-Powered Ticketing in Slack. Unthread automatically tracks conversations as tickets and uses AI to prioritize, assign, and resolve instantly.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
unthread: {
type: "app",
app: "unthread",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.unthread.io/api/users/list`,
headers: {
"X-Api-Key": `${this.unthread.$auth.api_key}`,
},
})
},
})
Unthread uses API keys for authentication. When you connect your Unthread account, Pipedream securely stores the keys so you can easily authenticate to Unthread APIs in both code and no-code steps.