Start creating your dream marketplace with the ultimate multivendor marketplace solution.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dokan: {
type: "app",
app: "dokan",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.dokan.$auth.url}/wp-json/dokan/v1/stores/`,
})
},
})
Dokan uses API keys for authentication. When you connect your Dokan account, Pipedream securely stores the keys so you can easily authenticate to Dokan APIs in both code and no-code steps.
Dokan uses the WordPress REST API. Follow these instructions to connect your self hosted Wordpress instance; their authentication credentials will be used to access Dokan 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.