Table of Contents

Search

  1. Preface
  2. Informatica Intelligent Cloud Services REST API
  3. Platform REST API version 2 resources
  4. Platform REST API version 3 resources
  5. Data Integration REST API
  6. Mass Ingestion Files REST API
  7. Mass Ingestion Streaming REST API
  8. Model Serve REST API
  9. RunAJob utility
  10. ParamSetCli utility
  11. REST API codes
  12. REST API resource quick references

REST API Reference

REST API Reference

Uploading an import package

Uploading an import package

Use a POST request to upload an import package.

POST request

To upload the import package, use the following URI:
/public/core/v3/import/package
For Content-Type, use
multipart/form-data
In the request body, include a part with the name of
package
. For its content, use the export ZIP file that you want to import.
By default,
Informatica Intelligent Cloud Services
uses checksum validation to verify that no changes were made to the contents of the export ZIP file after it was created. If you want to upload an import package that contains a modified export ZIP file, include the relaxChecksum parameter and set the value to True.
The following image shows an example of the request body in Postman:
The image shows a post request body in Postman where "package" is the key and the export.zip file is the value.

POST response

If successful, returns the following information for the import job:
Field
Type
Description
jobId
String
ID of the import job.
jobStatus
Collection
Status of the package upload.
state
String
Returned in the status object.
Status of the import job, such as In Progress, Success, or Failed.
message
String
Returned in the status object.
Import job status message.
checksumValid
Boolean
Indicates whether the import package has valid checksum.

POST response example

You might receive a response similar to the following example:
{ "jobId": "2oZb7vFI2QQg4ncd4AyCGn", "jobStatus": { "state": "NOT_STARTED", "message": null } "checksumValid": true }

0 COMMENTS

We’d like to hear from you!