with Schedule and PlentyONE?
Retrieves a specific order by ID from PlentyONE. See the documentation
Retrieves documents for a specific order from PlentyONE. See the documentation
Retrieves items for a specific order from PlentyONE See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
plentyone: {
type: "app",
app: "plentyone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://p${this.plentyone.$auth.id}.my.plentysystems.com/rest/user`,
headers: {
Authorization: `Bearer ${this.plentyone.$auth.oauth_access_token}`,
},
})
},
})