How do I check if Spark export (Export v2) is enabled in a tenant?

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

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

Comments

0 comments

Please sign in to leave a comment.