Powerful Helpdesk Plugin for WordPress. Automate your support ticketing tasks with workflows and super fast shared inbox.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fluent_support: {
type: "app",
app: "fluent_support",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.fluent_support.$auth.url}/wp-json/fluent-support/v2/tickets`,
auth: {
username: `${this.fluent_support.$auth.username}`,
password: `${this.fluent_support.$auth.application_password}`,
},
})
},
})
Fluent Support uses API keys for authentication. When you connect your Fluent Support account, Pipedream securely stores the keys so you can easily authenticate to Fluent Support APIs in both code and no-code steps.
Fluent Support uses the WordPress REST API. Follow these instructions to connect your self hosted Wordpress instance; their authentication credentials will be used to access Fluent Support API.
This integration requires the Application Passwords plugin to be installed in your Wordpress instance, which allows you to authenticate without having to provide passwords user passwords directly.
The url
field below is your WordPress site's domain. For example, if you have a Wordpress.org site hosted at https://example.com
, then enter example.com
in the url field below.