Reltio Connect

 View Only
  • 1.  Migration of DVF

    Reltio Partner
    Posted 10-14-2025 10:47

    Hi,

    I have a quick question regarding the migration of DVFs (Data Validation Functions) between environments. While I understand that L3 configurations can be exported and imported, it appears that DVFs are not included in this process.
    Could you please confirm if there is any supported method  available to migrate DVFs across environments? Or is manual configuration the only option currently?
    Appreciate your guidance on this.

    Thanks

    Himaja



    ------------------------------
    Himaja Kallakuri
    Associate consultant
    Infosys
    ------------------------------


  • 2.  RE: Migration of DVF

    Reltio Employee
    Posted 10-14-2025 11:25

    Hi Himaja Kallakuri,
    You can use the following api to GET the DVFs from lower environment and then POST using the second api to post the DVFs in Higher Environment.

    GET - https://console.reltio.com/datamodeler/services/dvf/api/{{tenantID}}/dataValidationFunctions/entityTypes/Product
    POST - https://console.reltio.com/datamodeler/services/dvf/api/{{tenantID}}/dataValidationFunctions/entityTypes/Product
    Swagger links for both - 
    https://developer.reltio.com/private/swagger.htm?module=Configuration#/Data%20Validation%20Function/getValidationFunctionforObjectType
    https://developer.reltio.com/private/swagger.htm?module=Configuration#/Data%20Validation%20Function/createValidationFunctionsForObjectType



    ------------------------------
    Vibha Mahesh
    Technical Consultant
    Reltio
    ------------------------------



  • 3.  RE: Migration of DVF

    Reltio Partner
    Posted 10-16-2025 03:27

    Hi,

    Is it possible to give exact get and post url to try in my postman.The above seems to be swagger api's,i want to test through my postman itself.

    Many Thanks,

    Himaja



    ------------------------------
    Himaja Kallakuri
    Associate consultant
    Infosys
    ------------------------------



  • 4.  RE: Migration of DVF

    Reltio Employee
    Posted 10-22-2025 08:59

    Hi Himja, 

    Here are the ready to use cURL commands for the APIs Vibha shared above. You can import it in postman.

    Get DVFs for a specific entity type

    curl --location 'https://data-validation-functions.reltio.com/api/{{mdmTenant}}/dataValidationFunctions/entityTypes/{{reltio-entityType}}' \
    --header 'Authorization: Bearer {{accessToken}}' \
    --header 'Content-Type: application/json' \
    --header 'env: {{reltio-env}}'

    Post DVFs for a specific entity type

    curl --location 'https://data-validation-functions.reltio.com/api/{{mdmTenant}}/dataValidationFunctions/entityTypes/{{reltio-entityType}}' \
    --header 'Authorization: Bearer {{accessToken}}' \
    --header 'env: {{reltio-env}}' \
    --header 'Content-Type: application/json' \
    --data-raw '<<Enter Modified JSON from Get Response Here>>'



    One important thing to note, before making the POST API call in higher environment using the get Response, please make sure to remove the URIs from the GET response JSON. other wise the POST API will not work. 



    ------------------------------
    Diparnab Dey
    Technical Consultant
    Reltio
    Kolkata, West Bengal
    ------------------------------