Item Change Ownership

0
Hello, I have created an item in Teamcenter using Mendix. Now, I need to transfer the ownership of the item to another user. How can I achieve it?
asked
1 answers
0

Call Teamcenter Service with an Operation Mapping like this:

{
    "ServiceOperation": "Core-2006-03-DataManagement\/changeOwnership",
    "InputType":        "TcConnector.Command",
    "ResponseType":     "",
    "ObjectMapping":    "",
    "OperationInput": 
    {
        "input": [
            {
                "object": "$Input\/MyFirstModule.ModelObject",
                "owner": "$Input\/MyFirstModule.user",
                "group": "$Input\/MyFirstModule.group"
            }
        ]
    },
    "OperationResponse": {
    }
}

 

answered