Start creating your dream marketplace with the ultimate multivendor marketplace solution.
import { 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/`,
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})