Hello,
Do you know if it is possible to update the username for lifecycle roles using the REST API?
I am able to update the lifecycle administrator with the following JSON:
{
"lifecycleAdminUser": {
      
        "userName": "jsmith",
        "isPrimary": true
      }
}
 
However, I encounter issues when attempting to update other lifecycle roles. For example:
{
"LC_ROLE9065": {
      
        "userName": "jsmith",
        "isPrimary": true
      }
}
I get this error:
{  "meta": {    "errors": [      {        "code": 1012,        "codeDesc": "DeserializationFailed",        "message": "An error occurred while attempting to deserialize the request, Project Manager, {\r\n  \"userName\": \"jsmith\",\r\n  \"isPrimary\": true\r\n}"      }
    ]
  }
}
Any guidance you could provide would be greatly appreciated.
Thank you!
