Hi, I'm Ask INFA!
What would you like to know?
ASK INFAPreview
Please to access Ask INFA.

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. File Ingestion and Replication REST API
  7. Streaming Ingestion and Replication REST API
  8. RunAJob utility
  9. ParamSetCli utility
  10. REST API codes
  11. REST API resource quick references

REST API Reference

REST API Reference

Testing compatibility

Testing compatibility

Use the convert resource to test whether a
synchronization
task can be converted to a
data transfer
task. If the
synchronization
task isn't compatible with
data transfer
task features, the response includes the reasons for the incompatibility.

GET request

To find out if a
synchronization
task can be converted to a
data transfer
task, use the following URI:
/dtt/dss/convert/test/<assetId
To find the asset ID, you can send a lookup request. For information about the lookup resource, see Lookup.

GET response

The response includes the following information:
Field
Type
Description
assetId
String
ID of the
synchronization
task to be converted.
assetName
String
Name of the
synchronization
task to be converted.
dttparity
Boolean
Whether the
synchronization
task is compatible with
data transfer
task features. A Yes value means the
synchronization
task is compatible with
data transfer
task features so the task can be converted.
errors
String
If the value for dttparity is No, includes reasons why the
synchronization
task can't be converted to a
data transfer
task.

GET example

The following request checks a
synchronization
task to see if it's compatible with
data transfer
task features:
GET <server URL>/dtt/dss/convert/test/0001R291234567891234 Content-type: application/json Accept: application/json INFA-SESSION-ID: 2l0oeVx22Rujiej7y1234T
The following response shows that the
synchronization
task can be converted to a
data transfer
task:
{ "assetId": "0001R291234567891234", "assetName": "Sync Task 1", "errors": [], "dttparity": YES }
The following text is an example of a response when the
synchronization
task can't be converted to a
data transfer
task:
{ "assetId": "0001R291234567896789", "assetName": "Sync Task 2", "errors": [ "Multiple source objects are not supported" ], "dttparity": NO }

0 COMMENTS

We’d like to hear from you!