...
APIs for Import/Export Processes
API Common NameURI | Description | Parameters | Response | |
---|---|---|---|---|
Upload | ioProcessTypeCode (required) dataPipelineName (optional)
File Contents (required) POST /api/v1/ioProcesses/files | Uploads a file with the given friendly name and creates a new IO process associated with that file. |
| |
List Files | ioProcessId (optional) ioProcessTypeCode (required) dataPipelineName (optional)
File Created Date From MM/DD/YYYY (optional)
File Created Date To MM/DD/YYYY (optional) Required if File Created Date From is providedGET /api/v1/ioProcesses/files | Retrieves a list of files from IO process records based on the provided IO process type code and optional creation date range or ioProcessId. | Returns a list of files available for download and provides the following details:
| |
Download | ProcessId (required) ioProcessTypeCode (required) dataPipelineName (optional)
GET /api/v1/ioProcesses/files/{ioProcessId} | Downloads a file associated with a given IO process identifier, validated by the IO process type code and exact file name. | Returns the specified file |
...