As mentioned in your other thread, the value itself must be a string containing a valid JSON document.
Thus.
{
"variables": [
{"name": "fechaInicio", "value": "10.10.2023"},
]
}
should be sent as:
{
"variables": [
{"name": "fechaInicio", "value": "\"10.10.2023\""},
]
}