import { 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}`,
},
})
},
})
Create a new Conversation. See the documentation
Create a new Customer. See the documentation
Delete a Customer. See the documentation
Update a Customer. See the documentation
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.