Tables


Tables


Summary

After connecting to your API, you can create, view, and configure the data from it in the form of tables. Tables can be customized via a wizard. You can also specify server-side filters to improve efficiency. This page covers creating tables and configuring table data, parameters, headers, and filters.

Creating Tables

When creating tables for API Connector, it is important to remember that each table must be created individually in order to be listed in the Connector’s catalog. To do so, follow the steps below:

  1. Click Add to begin creating a new table.

  2. Enter a Name for the table.

  3. In Request URL, choose either Get or Post. If you select Post, supply the Body to include in the API request. Then enter the URL of your API endpoint.

  4. Select XML or JSON as the Response Type.

  5. Enter the URL of your API endpoint into the Request URL field.

Table Data

Next, you must tell the connector how to model the API’s response into a table.

  1. Click Configure in the Table Data section to open the configuration wizard. CData Connect calls your API and provides a preview of the data.

  2. Click Next.

  3. In the Add Repeat Elements dialog, select the checkbox next to the repeat elements you want added to your API table. This is the path of the element in your API endpoint which contains the repeating items to be used as rows. You can select multiple repeat elements if there are repeat elements within multiple paths in the response.

  4. (Optional) You can toggle Custom Repeat Elements to add repeat elements manually, rather than selecting from a list.

    Click Add Repeat Element to add another repeat element manually.

  5. Click Next.

  6. In the Add Columns dialog, select the columns to add to your API table.

    Once you have selected your columns, click Next.

  7. In the Preview Table dialog, review the table contents. Click Back to make any changes.

  8. Review the preview of your table and click Next. The Configuration Wizard automatically imports all selected columns into the correct fields.

  9. Back in the Table Data section of the Edit Table screen, you can edit column names and data types. You can also assign primary keys or delete columns. For other edits, click Configure again to adjust repeat elements and other data.

  10. Click Save at the top of Edit Table screen to save the table data.

  11. Click Preview at the top of the Edit Table screen to preview your table.

Parameters

You can add URL parameters to be sent with all API requests for this table. To create a parameter:

  1. Click Add Param.

  2. Enter the parameter Name.

  3. Enter the parameter Value.

To add more parameters, repeat the steps above.

Headers

You can add HTTP headers that are sent with all API requests for this table. These headers are in addition to the headers configured with the API connector itself. To add a new header:

  1. Enter the header Name.

  2. Specify the Value of the header.

To add more headers, click Add Header and repeat the steps above.

Filters

After creating the table with columns, you can create filters to define the behavior of the API Connector when a WHERE clause is issued during a query. Filters are optional, but can improve performance for WHERE clause conditions.

  1. Click Add Filter.

  2. Select the Column Name the filter applies to. This filter is applied when the selected column and SQL operator exist in the WHERE clause.

  3. Select an SQL Operator. This filter is applied when the selected column and SQL operator exist in the WHERE clause.

  4. Select a Request Filter from the drop-down list: URL Parameter or Request Header. The request filter determines how the filter is passed in the request to the API.

  5. Specify the URL Parameter or the Request Header that this API uses to filter.

To add more filters, repeat the steps above.

Example

This example shows how to create a filter that processes a query that filters records in the Reports table by the date the record was created.

Here is an example of such a query:

SELECT * FROM Reports Where CreatedDate > 2022-12-31

If no filter has been defined for this table, the connector processes this filter in memory by reading all of the rows from the API and filtering the list in memory by the specified CreatedDate column. However, this API supports this type of filtering on the server side which can improve performance substantially. This is what this query would look like to the API:

https://www.mycustomapi.org/api/reports?$startdate=2022-12-31

In order to tell the connector how to send this filter to the API, you would specify the following fields:

Column Name: CreatedDate

SQL Operator: Greater Than

Request Filter: URL Parameter

Parameter Name: startdate

This instructs the connector that when a greater than operator has been specified for the CreatedDate column, include the startDate URL parameter with the filter value in the API request.