with Joomla! and Offorte?
Emit new event when an event is created. See the documentation
Create a new contact organisation in Offorte. See the documentation
Create a new contact person in Offorte. See the documentation
The Joomla! API provides a powerful way to interact with the Joomla! content management system programmatically. With this API, you can automate content creation, user management, and site maintenance tasks. Pipedream’s serverless platform enhances these capabilities, allowing you to create workflows that trigger on specific events, process data, and integrate with countless other services to extend the functionality of your Joomla! site.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
joomla: {
type: "app",
app: "joomla",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.joomla.$auth.joomla_host_domain}/api/index.php/v1/users`,
headers: {
"X-Joomla-Token": `${this.joomla.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
offorte: {
type: "app",
app: "offorte",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.offorte.com/api/v2/${this.offorte.$auth.account_name}/hello`,
headers: {
"authorization": `${this.offorte.$auth.api_key}`,
},
})
},
})