Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Insert excerpt
_Banners
_Banners
nameanalysis
nopaneltrue

Introduction

PhixFlow allows you to integrate with various APIs to export data. To achieve this you will require three elements.

  1. Table: Contains the data which the HTTP Exporter will provide to the API.
  2. HTTP Exporter: Uses the HTTP Datasource the data from the HTTP Datasource.
  3. HTTP Datasourceprovide the information needed to connect to an external source of data via HTTP. 

Example

APIs will have different specifications, therefore we will walk though a generic solution which writes data back to an API.

Solution

Table

Insert excerpt
_tableOnly
_tableOnly
nopaneltrue

  1. Hover your mouse over the table contain the data you wish to export.
  2. From the popup menu select 
    Insert excerpt
    _http_exporter
    _http_exporter
    nopaneltrue
     
    1. You can drag a new HTTP Exporter from the toolbar, but you will need to connect it to the table.
HTTP Exporter

Insert excerpt
_http_exporter
_http_exporter
nopaneltrue

  1. In properties window which opens on the right set the following:
    1. Basic Setting
      1. Name, Set a name indicative of the data being exported. 
      2. Enabled, Tick this to use the exporter.
    2. Send Message
      1. HTTP Request Method, This defaults to GET or POST. For our example that is suitable. However see  HTTP Exporter for more information, if your API requires something different.
      2. URL Expression, we set the URL of the API we will be communicating with, omitting the http: prefix:
        1. we can reference the URL from the http datasource using the syntax ${_url} (once connected). This can be useful if you have a base url in your HTTP datasource, e.g. www.phixflow.com, and you want to append to it in different collectors e.g. ${_url}/myPage1
        2. We can also reference a value from the table using ${pipeName.Attribute e.g. ${in.URL}.
      3. Statement Expression, is the statement that will be sent to the API through the datasource. Check the specifications of your API for the structure of the statement. Below is an example if a SOAP XML statement sent to Salesforce:

      4. Code Block
        <soapenv:Envelope
             xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
             xmlns:urn="urn:partner.soap.sforce.com"
             xmlns:urn1="urn:sobject.partner.soap.sforce.com"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            
        	<soapenv:Header>
                <urn:SessionHeader>
                    <urn:sessionId>${in.SessionID}</urn:sessionId>
                </urn:SessionHeader>
            </soapenv:Header>
            
        	<soapenv:Body>
                <urn:create>
                    <urn:sObjects xsi:type="urn1:Account">          
                        <Name>
        					${= removeNull(acc.Name) }
        				</Name>
                        <AccountNumber>
        					${acc.AccountNumber}
        				</AccountNumber>
                        <Industry>{(acc.Industry) }</Industry>
                        <AnnualRevenue>
        					${acc.AnnualRevenue}
        				</AnnualRevenue>
                        <Phone>{(acc.Phone) }</Phone>
                        <Website>{(acc.Website) }</Website>
                    </urn:sObjects>
                </urn:create>
            </soapenv:Body>
        
        </soapenv:Envelope>


    3. HTTP Headers
      1. HTTP Headers, contains information about the request being sent to the API. An example header setup is illustrated below, for full details see HTTP Header
    4. Advanced
      1. Datasource, 
        1. Existing
          1. A datasource can be selected from the dropdown list or click the Datasource icon to display a complete list.
        2. New 
          1. Create the datasource as described in the next section and select it as outlined in item 1 above.
HTTP Datasource

Insert excerpt
_http_datasource
_http_datasource
nopaneltrue

This step is only require if you need a new datasource. Often a single HTTP Datasource will facilitate both the connection to and from an API.

  1. Move you mouse over the HTTP Exporter created above and click
    Insert excerpt
    _http_datasource
    _http_datasource
    .
    1. Alternatively you can drag a HTTP Datasource from the toolbar and drop it on the canvas, but this will require a you to manually connect the items together.
  2. In the properties window for the HTTP Datasource set the following:
    1. Name, Set a name indicative of the API.
    2. Enabled, Tick this option. 
    3. Connection Type, Set this to that of the API.
    4. HTTP Datasource Instances, Set the instance connection details. Add a new HTTP Datasource Instance and complete the details as follows:
      1. Name, Indicative of the use of the instance.
      2. Enabled, Tick to use the instance.
      3. Login details can be set if required. see HTTP Datasource for more information.
      4. URL, The URL where the API can be found.
      5. Click 
        Insert excerpt
        _finish
        _finish
        nopaneltrue
        .
    5. Click 
      Insert excerpt
      _finish
      _finish
      nopaneltrue
      .

Secured Example

Where we need to use sensitive information, such as a password or token, these can be held in Secret Keys and access using the prefix _datasource.

Secret Key Setup

  1. Open the HTTP Datasource properties,
  2. Navigate to the Secret Keys section,
  3. Add your sensitive information,
    1. Name, name the secret key will be referenced by. For example clientSecret.
    2. Secret, the secret information to be stored in an encrypted format.
  4. Save all of your changes.
  5. The secret key can now be referenced by HTTP Exporters attached to the HTTP Datasource. It is available to use in the URL Expression and Statement Expression.
  6. To reference the secret key use the syntax: _datasource.secretname.
  7. For example, _datasource.clientSecret



Code Block
client_id=client_secret=${_datasource.clientSecret}&resource=phixflow.com&grant_type=client_credentials


Troubleshooting

PhixFlow can log the traffic sent to and from an API, this can be helpful as it lets you see the actual communication data such as the Statement Expression values or the Responses from the API.

To enable logging:

  1. Click Administration Menu → System → Logging,
  2. Navigate down to Collector/Exporter Logging and tick
    1. Log HTTP Collector Connection Details
    2. Log HTTP Exporter Connection Details
  3. This is illustrated below:
  4. Once you have resolved your issue, turn these settings back off to avoid filling your logs with unnecessary information.
  5. To view the results open the System Console from the top right corner of PhixFlow (
    Insert excerpt
    _console
    _console
    ).
  6. In the Completed Task section, click on your Task.
  7. The Messages section on the right will now contain the logging for your activity.
  8. Double-click the messages to open them, in the window that opens also click on the Message Detail tab to see detailed information. Below is an example, here we see the response form the JSON response from the API:

More Information

For more information about the configuration options surrounding HTTP Datasources and Collectors see the following pages: