I would like map values in several attributes, for example
0 : Critical
1 : High
2 : Medium
3 : Low
From the trigger, I receive this JSON structure
{
"priority":1
}
and in the flow, I would to transform in
{
"priority":"High"
}
How I can do this with Flow?
Thanks / Philippe