Build Apps with Live Paylocity Data Using the Low-Code Development Platform of Mendix



Connect Paylocity data with Mendix to build apps using the CData JDBC Driver for Paylocity.

Mendix, developed by Siemens, is a low-code platform used to rapidly develop, test, and deploy web and mobile applications, facilitating digital transformation and enhancing business agility. When paired with the CData JDBC Driver for Paylocity, you can use your Paylocity data to create various applications using Mendix Studio Pro.

With built-in optimized data processing, the CData JDBC Driver offers unmatched performance for interacting with live Paylocity data. When you issue complex SQL queries to Paylocity, the driver pushes supported SQL operations, like filters and aggregations, directly to Paylocity and utilizes the embedded SQL engine to process unsupported operations client-side (often SQL functions and JOIN operations). Its built-in dynamic metadata querying allows you to work with and analyze Paylocity data using native data types.

This article shows how you can easily create an application that utilizes Paylocity data in Mendix by combining the JDBC interface provided by Mendix with the CData JDBC Driver for Paylocity.

Preparing the Mendix environment

In this section, we will explore how to develop an app using Mendix Studio Pro, as previously introduced, with Paylocity data. Be sure to install Mendix Studio Pro beforehand.

Install the CData JDBC Driver for Paylocity

First, install the CData JDBC Driver for Paylocity on the same machine as Mendix. The JDBC Driver will be installed in the following path:

C:\Program Files\CData\CData JDBC Driver for Paylocity 20xx\lib\cdata.jdbc.paylocity.jar

Create an application

Now let's start creating the app. First, let's make an app that has the Database Connector available.

  1. Launch Mendix Studio Pro and click 'Create New App.'
  2. Select the 'Blank Web App' option.
  3. Click 'Use this starting point' to proceed.
  4. Create an app with a name of your choice. Also, note down the "Disk location" information, for future reference.
  5. You have now created a brand-new app.

Add the Database Connector to your application

Next, add the Database Connector module to the app you just created.

  1. On the top right, click on the Marketplace button.
  2. Search for Database Connector in the Marketplace search section and select it.
  3. Click on Download to download the latest Database Connector.
  4. In the Import Module window, select the Action as Add as a new module.
  5. If the Database Connector appears on the app screen, you are good to move on to the next steps.

Adding the JDBC Driver to Mendix Studio Pro

To use the CData JDBC driver with this Database Connector, you must add the JDBC Driver JAR file to your project.

  1. In the Mendix project folder you noted earlier, there is a folder named 'userlib.' Place the two files, 'cdata.jdbc.paylocity.jar' and 'cdata.jdbc.paylocity.lic,' into that folder.
  2. You can now use the CData JDBC Driver with the Database Connector.

Create a Data Model

Now, let's create an app. We first need to define a data model to load data from the Database Connector and display it on the list screen. Let's create the data model before loading the data.

  1. Add an Entity to the 'Domain model' of MyFirstModule.
  2. Enter the entity name and field definitions.
  3. You can easily configure the data by checking the table definition information through the CData JDBC driver using a tool such as DBeaver.
  4. Define the entities.

Create a constant for the JDBC URL

Next, create a JDBC URL constant to use with the Database Connector.

  1. Add 'Constant' to MyFirstModule.
  2. Add a name to the Constant in the Add Constant window.
  3. Generate a JDBC URL for connecting to Paylocity, beginning with jdbc:paylocity: followed by a series of semicolon-separated connection string properties.

    Set the following to establish a connection to Paylocity:

    • RSAPublicKey: Set this to the RSA Key associated with your Paylocity, if the RSA Encryption is enabled in the Paylocity account.

      This property is required for executing Insert and Update statements, and it is not required if the feature is disabled.

    • UseSandbox: Set to true if you are using sandbox account.
    • CustomFieldsCategory: Set this to the Customfields category. This is required when IncludeCustomFields is set to true. The default value for this property is PayrollAndHR.
    • Key: The AES symmetric key(base 64 encoded) encrypted with the Paylocity Public Key. It is the key used to encrypt the content.

      Paylocity will decrypt the AES key using RSA decryption.
      It is an optional property if the IV value not provided, The driver will generate a key internally.

    • IV: The AES IV (base 64 encoded) used when encrypting the content. It is an optional property if the Key value not provided, The driver will generate an IV internally.

    Connect Using OAuth Authentication

    You must use OAuth to authenticate with Paylocity. OAuth requires the authenticating user to interact with Paylocity using the browser. For more information, refer to the OAuth section in the Help documentation.

    The Pay Entry API

    The Pay Entry API is completely separate from the rest of the Paylocity API. It uses a separate Client ID and Secret, and must be explicitly requested from Paylocity for access to be granted for an account. The Pay Entry API allows you to automatically submit payroll information for individual employees, and little else. Due to the extremely limited nature of what is offered by the Pay Entry API, we have elected not to give it a separate schema, but it may be enabled via the UsePayEntryAPI connection property.

    Please be aware that when setting UsePayEntryAPI to true, you may only use the CreatePayEntryImportBatch & MergePayEntryImportBatchgtable stored procedures, the InputTimeEntry table, and the OAuth stored procedures. Attempts to use other features of the product will result in an error. You must also store your OAuthAccessToken separately, which often means setting a different OAuthSettingsLocation when using this connection property.

    Built-in Connection String Designer

    For assistance in constructing the JDBC URL, use the connection string designer built into the Paylocity JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.

    java -jar cdata.jdbc.paylocity.jar

    Fill in the connection properties and copy the connection string to the clipboard.

    A typical JDBC URL is below:

    jdbc:paylocity:OAuthClientID=YourClientId;OAuthClientSecret=YourClientSecret;RSAPublicKey=YourRSAPubKey;Key=YourKey;IV=YourIV;InitiateOAuth=GETANDREFRESH
  4. Specify the connection string copied from the previous step in the Default value section and click on OK.

Create a microflow to retrieve Paylocity data

Let's create a microflow that retrieves data from the Database Connector based on the entity we created.

  1. Click 'Add microflow' from MyFirstModule.
  2. Create a microflow with any name.
  3. First, create an object for the entity you defined earlier. Then, add the 'Create Object' action to the microflow.
  4. Click on the 'Select' button for Entity in the Create Object window.
  5. Select a previously defined Entity.
  6. Enter an arbitrary Object name and click OK.
  7. Next, add an Execute Query action to the microflow to retrieve data from the Database Connector.
  8. Define each input in the Execute Query window.
  9. In "jdbc url", specify the constant you defined beforehand.
  10. In SQL, write a query to retrieve data from Paylocity.
  11. You don't need a Username or Password this time, so set them to 'empty' and assign the object created in the previous flow as the Result object. Then, simply specify any name you prefer for the List in the List Name section.
  12. Finally, define the output of the microflow.
  13. Double-click the End Event to open it, select 'List' from the Type dropdown, and link it to the Entity you defined earlier. Then, set the output result of Execute Query as the Return value.
  14. This completes the microflow that retrieves data from Paylocity.

Create a list screen and link it to a microflow

Finally, let's create a screen that displays the results obtained from the microflow.

  1. Double-click 'Home_web' inside the Toolbox menu to open it.
  2. Drag and drop a Data grid template from the Data containers section into the list screen.
  3. Once you have placed the Data grid, double-click on it to display the Edit Data Grid settings screen.
  4. Navigate to the Data source tab and link the data source type with the Microflow.
  5. Select the microflow you just created.
  6. Now click OK.
  7. When you click OK, you'll be prompted to auto-detect columns. Simply click 'Yes' to proceed.
  8. Next, you'll be prompted to generate controllers for various Data grids. Since we won't be configuring the logic for each one this time, click 'No.'
  9. This will create a simple data grid screen as shown below.

Try it out

Now let's check if it works properly.

  1. Click the 'Publish' button to prepare the app you created. Once that's done, click 'View App' to open the app.
  2. If you see a list of Paylocity data like the one below, you're all set! You've successfully created a Paylocity-linked app with low code, without needing to worry about Paylocity's API.

Get Started Today

Download a free 30-day trial of the CData JDBC Driver for Paylocity with Mendix, and effortlessly create an app that connects to Paylocity data.

Reach out to our Support Team if you have any questions.

Ready to get started?

Download a free trial of the Paylocity Driver to get started:

 Download Now

Learn more:

Paylocity Icon Paylocity JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with Paylocity.