Hello @reinajss,
The transform looks good except for the type of the second value to concatenate. The type needs to be camel-case accountAttribute
.
Try out the transform below and let me know if you have any other issues!
{
"name": "Cria Login Terceiro",
"type": "concat",
"attributes": {
"values": [
{
"type": "static",
"attributes": {
"value": "T"
}
},
{
"type": "leftPad",
"attributes": {
"padding": "0",
"length": "8",
"input": {
"type": "accountAttribute",
"attributes": {
"sourceName": "Base",
"attributeName": "matricula"
}
}
}
}
]
}
}