Question
How to check if Spark-based export (version 2.0) is enabled in a tenant?
Answer
The request:
GET {{ExportServiceURL}}/settings/{{TenantId}}/exportVersion
Returns the "exportVersion"
field of the export tenant configuration that defines a version of Export REST API.
Response Body:
{
"value": "v2"
}
If you need to change the export Version, perform the following.
The request:
POST https://{{ExportServiceURL}}/settings/{{TenantId}}/exportVersion
Headers:
Authorization: Bearer abc-xyz
Content-Type: application/json
{
"value": "v2"
}
Response
{
"status": "success",
"previousValue": "v1"
}
References
https://docs.reltio.com/exportapi/exportv2.html?hl=export%2Capi#exportv2__getexportversion
Comments
Please sign in to leave a comment.