Is there a way to export relations and data out of Reltio systems into downstream systems?

Question

We need to provide all the Relations (Affiliation and Address) for a specific market downstream.  Is there is an API  to suggest to get the data from the Reltio? 

Answer

This can be achieved in multiple ways depending upon the implementation, but the core API is the export API for data and relations to export out of Reltio Systems. 

The Export service provides API users with endpoints to export relations You can run an export operation for all relations or only the relations that match your export filter.

You can run an export operation for all relations or only the relations that match your export filter.

1. This operation exports all business objects uploads a CSV file to S3 storage and sends a link to exported data to the API user's email.

Request:

POST {ExportServiceURL}/export/{{tenant}}/relations/_all

2.  This operation exports relations updated since 1394726957000, and with the type that extends HCP or Location.

POST {ExportServiceURL}/export/{{tenant}}/relations

Request Body:

{
  "ovOnly" : true,
  "updateTimeFilter" : {"since" : 1394726957000},
  "includeType":["configuration/relationTypes/HasAddress", "configuration/relationTypes/HasAdminRole"]
}

References

https://documentation.reltio.com/exportapi/exportallrelations.html

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.