how to implement Core-2014-10-DataManagement/removeChildren in mendix

0
I want to replace a file from mendix and same should be updated in teamcenter
asked
1 answers
1
{
    "ServiceOperation": "Core-2014-10-DataManagement\/removeChildren",
    "InputType": "MyModule.RemoveChildrenInput",
    "ResponseType": "",
    "ObjectMapping": "",
    "OperationInput": {
        "inputData": [
            {
                "clientId": "$Input\/clientId",
                "parentObj": "$Input\/MyModule.parentObj",
                "childrenObj": ["$Input\/MyModule.childrenObj"],
                "propertyName": "$Input\/propertyName"
            }
        ]
    },
    "OperationResponse": {}
}

This is the sort of operation mapping you need for a domain model like this

{776301BF-EA14-4D44-BC1B-BF91604734AE}.png

{0EE76635-8CBF-4106-990F-292BE6C9602D}.png

answered