with Akeneo and Onbee.app?
Allows you to create a new media file and associate it to an attribute value of a given product or product model. See the docs
Delete an employee with the specified ID. See the documentation
Update an employee with the specified ID. See the documentation
The Akeneo API empowers users to streamline product information management by automating data exchange between Akeneo and other systems. By leveraging Pipedream, you can construct workflows that trigger actions based on events in Akeneo, sync product data across platforms, enhance product information with data from external sources, and keep sales channels up-to-date with the latest catalog details.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
akeneo: {
type: "app",
app: "akeneo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.akeneo.$auth.host}/api/rest/v1`,
headers: {
Authorization: `Bearer ${this.akeneo.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
onbee_app: {
type: "app",
app: "onbee_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.onbee_app.$auth.workspace_name}.onbee.app/api/employee-list/`,
headers: {
Authorization: `Bearer ${this.onbee_app.$auth.api_token}`,
},
})
},
})