Question
Does the "searchByOv,OvOnly" option work in Spark Based Export API version 2.0?
Answer
Export version 2 does support exporting data by OV, but there are differences from v1:
- The parameters - skipPostprocessing, fileFormat, partSize, and filter are all query parameters that should be added in the API call itself.
- "ovOnly" and "includeType" are the parameters that should be added in the body section of the API.
- "options=searchByOv" is not supported in V2
Below is an example API in the correct format.
Request Method:
POST https://test.reltio.com/jobs/v2/export/{tenant_ID}/entities?filter=(equals(attributes.CountryCode,'US'))&fileFormat=json&dateFormat=readable&select=type,attributes.HCPUniqueId,attributes.CountryCode,attributes.OriginalSource
Body:
{
"ovOnly": true,
"includeType": ["configuration/entityTypes/HCP"]
}
Comments
Please sign in to leave a comment.