Tag: Connector

  • List and Send Mail from Outlook 365 using MuleSoft

    List and Send Mail from Outlook 365 using MuleSoft

    Connecting to Outlook 365 using the MuleSoft connector is relatively straightforward, thanks to the connector’s intuitive design and robust capabilities. With this connector, you can seamlessly integrate your MuleSoft applications with Outlook 365 mailboxes, enabling real-time communication and message handling. In this post, I’ll walk you through the following steps: I’ll assume you have access…

  • Query and Load Data into Google BigQuery using MuleSoft

    Query and Load Data into Google BigQuery using MuleSoft

    BigQuery is a RESTful web service that enables interactive analysis of massively large datasets working along with Google Storage. If you’re building new integrations to drive data in and out of BigQuery, the general recommendation is to leverage the native API. MuleSoft recently released a Google BigQuery Connector that wraps these APIs and provides an…

  • Connect to Apache Kafka on Heroku using MuleSoft

    Connect to Apache Kafka on Heroku using MuleSoft

    Apache Kafka is used for building real-time data pipelines and streaming apps. It is horizontally scalable, fault-tolerant, and incredibly fast. When coupled with Heroku and MuleSoft, developers can easily publish and consume data without writing any code. In this article, we’ll walk-through the process of configuring the MuleSoft Kafka connector to connect to Apache Kafka…

  • Read and write Apache Parquet files using MuleSoft

    Read and write Apache Parquet files using MuleSoft

    UPDATE: 10/24/2022 – The Connector has been updated to support InputStream so there’s no need read from a local file store. You can read or write directly from a stream to an endpoint like AWS S3. Apache Parquet is a file format designed to support fast data processing for complex data. Unlike row-based formats like…

  • Upload and link files using the Salesforce Connector in Mule 4

    Upload and link files using the Salesforce Connector in Mule 4

    Overview Querying or upserting data into Salesforce objects is a simple process with MuleSoft and the Salesforce Connector. You can retrieve a Contact record, or update an Account through a single operation generally in Anypoint Studio. But there are some use cases where you need to combine multiple operations to handle a task in Salesforce.…

  • Update Document with a MongoDB Function using MuleSoft

    Update Document with a MongoDB Function using MuleSoft

    I recently had to figure out how to use the MuleSoft MongoDB Connector and update a document with a function. This post is a quick walk-through showing how to build an example flow to address the use case. In MongoDB, the collection we’ll be performing the function against looks like the following. It’s just a set…