Joomla!

Joomla! is a free and open-source content management system (CMS) for publishing web content. It is built on a model–view–controller web application framework that can be used independently of the CMS that allows you to build powerful online applications.

Integrate the Joomla! API with the Formatting API

Setup the Joomla! API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Joomla! and Formatting remarkably fast. Free for developers.

Create Article with the Joomla! API

Create an article. See the docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Update Article with the Joomla! API

Update an article. See the docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

Overview of Joomla!

As one of the most popular content management systems, Joomla! offers a wide
range of features and capabilities. With the help of the Joomla! API, you can
extend the functionality of the CMS even further.

Here are some examples of what you can build using the Joomla! API:

  • Custom components
  • Modules
  • Plugins
  • Templates
  • Language packs
  • Editions

Connect Joomla!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})