Richpanel is the help desk software that helps you create a seamless support experience for both the customer & support teams.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
richpanel: {
type: "app",
app: "richpanel",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.richpanel.com/v1/users`,
headers: {
"accept": `application/json`,
"x-richpanel-key": `${this.richpanel.$auth.api_key}`,
},
})
},
})
Adds a message to an existing ticket. See the documentation
Creates a new support ticket in Richpanel. See the documentation.
Updates the status of an existing ticket in Richpanel. See the documentation.
Richpanel uses API keys for authentication. When you connect your Richpanel account, Pipedream securely stores the keys so you can easily authenticate to Richpanel APIs in both code and no-code steps.