Sorry for the delay – here is a snippet you can use. Add this to the Custom JS:
function parseSingleChoiceManagedMetadata(val){
return '"'+String(val).split(";#")[1]+'"';
}
Then specify the function name in the “parseFunction” parameter like this:
...
...
"setFields":[{
"fromFIN":["ManagedMetadata"],
"joinBy":"",
"toFIN":"ManagedMetadata",
"parseFunction":"parseSingleChoiceManagedMetadata",
"skipIfEmpty":false
}]
Alexander