Introduction

MuleSoft provides a platform for building application networks that connect enterprise applications, data, and devices across any cloud and on-premises.

The Files.com MuleSoft Connector allows you to interact with the Files.com API using MuleSoft. The connector provides access to a wide range resources, including users, groups, folders, files, and more.

Requirements

Mule Runtime 4.3.0 or later is required to use the Files.com MuleSoft Connector.

Installation

It's recommended to use Anypoint Studio to install the Files.com MuleSoft Connector. This can be done by searching for "filescom" in the Anypoint Exchange and installing the connector from there.

Alternatively, you can modify the pom.xml file to include the connector as a dependency:

<dependency>
    <groupId>com.files</groupId>
    <artifactId>mule-filescom-connector</artifactId>
    <version>x.x.x</version>
    <classifier>mule-plugin</classifier>
</dependency>

Usage

If you're using Anypoint Studio, you can drag and drop any of the connector's operations into your flow to begin using them.

If you're manually coding your MuleSoft application, you'll need to include the following code inside the <mule> tag of the header of your project configuration XML file:

http://www.mulesoft.org/schema/mule/filescom
http://www.mulesoft.org/schema/mule/filescom/current/mule-filescom.xsd

This example shows how the namespace statements are placed in the mule XML block:

<mule xmlns="http://www.mulesoft.org/schema/mule/core"
      xmlns:filescom="http://www.mulesoft.org/schema/mule/filescom"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.mulesoft.org/schema/mule/core
      http://www.mulesoft.org/schema/mule/core/current/mule.xsd
      http://www.mulesoft.org/schema/mule/filescom
      http://www.mulesoft.org/schema/mule/filescom/current/mule-filescom.xsd">