If you are looking for an easy to use yet extremely powerful service to help you manage customer requests then eStreamDesk may be just what you are looking for. eStreamDesk is a hosted helpdesk and ticket tracking service that helps you to deliver exception customer service while saving time and cutting support costs.
Go to siteThe eStreamDesk API allows developers to access and integrate the functionality of eStreamDesk with other applications.
Some example API methods include managing account information, retrieving files, and managing file storage. eStreamDesk is a file-sharing and management service.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
estreamdesk: {
type: "app",
app: "estreamdesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.estreamdesk.$auth.domain}.estreamdesk.com/api/tickets`,
headers: {
"apiKey": `${this.estreamdesk.$auth.api_key}`,
},
})
},
})
eStreamDesk uses API keys for authentication. When you connect your eStreamDesk account, Pipedream securely stores the keys so you can easily authenticate to eStreamDesk APIs in both code and no-code steps.
You can get your API Key in Site Management > Site Settings. Make sure Save once you generate a new key.