hi
I want to user HTTP to make a PATCH HTTP call. I managed to make it working BUT
in case the body request comes from data

flow fails because of
JsonDecodingException: Unexpected JSON token at offset 10: Encountered an unknown key 'lastname' at path: $.user
Use 'ignoreUnknownKeys = true' in 'Json {}' builder to ignore unknown keys.
JSON input: {"user":{"lastname":"from PA"}}

Copy of body when flow fails
{
"user": {
"lastname": "from PA2"
}
}
Copy of body when flow runs ok
{
"user": {
"lastName": "Apple"
}
}
But if I type into body basicaly the same string then it works

Any idea how to make it work?