Add an Invoke for FTP Write to File

Add another invoke to the integration for the File Transfer Protocol (FTP) connection.

To add an invoke for the FTP connection:

  1. On the integration page, hover over an arrow and click the icon.
  2. From the list of available connections, select the FTP connection.
  3. In the adapter endpoint configuration wizard, complete the following steps:
    1. Basic Info Page:
      1. What do you want to call your endpoint?: Provide a meaningful name so that others can understand the purpose of this connection.
      2. What does this endpoint do?: Enter a description about the connection's functionality.
    2. Configure Operations Page:
      1. In the Output Directory field, enter OICIntegrations
      2. In the File Name Pattern fields, enter ActivitiesInformation.json
    3. Configure Schema Page: In Which one of the following choices would be used to describe the structure of the file contents? drop-down list, select Sample JSON document.
    4. File Contents - Definition Page: Upload a JSON file with the following JSON code:
    {
        "data": {
            "SM_ACTIVITY": [
                {
                    "ACTIVITY_NAME": "Act1",
                    "ACTIVITY_CODE": "A1000",
                    "PROJ_ID": "124101",
                    "STATUS": "IN_PROGRESS"
                },
                {
                    "ACTIVITY_NAME": "Act2",
                    "ACTIVITY_CODE": "A1010",
                    "PROJ_ID": "124101",
                    "STATUS": "IN_PROGRESS"
                }
            ],
            "pagination": [
                {
                    "nextTableName": "-1",
                    "queryName": "Inprogress Activities",
                    "nextKey": "0",
                    "rowCount": "8",
                    "sinceDate": "20230720T142903.000Z"
                }
            ],
            "safetyDate": [
                {
                    "queryName": "Inprogress Activities",
                    "sinceDate": "20230720T142903.000Z"
                }
            ],
            "tableList": [
                {
                    "rowCount": "2",
                    "tableName": "SM_ACTIVITY"
                }
            ]
        }
    }
    
    1. Summary Page: View the summary and click Finish.
  4. Click Save.


Last Published Tuesday, November 28, 2023