Update Appraisal
POST /perizia/{uuid}
Editing data of an already entered appraisal.
Example Request
curl -X POST 'https://sandbox-appraisal.realitycs.it/perizia/f80235fc-fa81-53a1-b05a-28fc0e3b4b7b' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
--data-raw '{
"tipologia_id": 1,
"categoria_catastale": "A3",
"latitudine": 45.467,
"longitudine": 9.190,
"indirizzo": "Via Roma",
"civico": "12",
"comune": "Milano",
"superficie": 120,
"prezzo": 200000,
"durata_mutuo": 15,
"stato_id": 3,
"anno_costruzione": 1990,
"classe_energetica": 5,
"epgl_nren": 174.87,
"piano": 3,
"bagni": 2,
"locali": 5,
"ascensore": false,
"riscaldamento_id": 1,
"comune_catastale": "F205",
"sez_urbana": "-",
"sez_amministrativa": "-",
"foglio_catastale": "186",
"particella_catastale": "384",
"subalterno_catastale": "72",
"rendita": 1000
}
'
Request Fields
Attention: perizia_id and bene_id cannot be modified, they must not be passed as input to the modification. Otherwise an error will be returned.
The list of input variables is the same as the appraisal entry service (with the exception of the above variables perizia_id and bene_id)
Go to Input variables for see al variables
See also the list of mandatory inputs for individual services:
Example Response
{
"richiesta_uid": "f80235fc-fa81-53a1-b05a-28fc0e3b4b7b"
}