Update Pembangunan

To edit the data in the specified collection with the specified parameters. When a JSON object is saved, the object properties are automatically added to the collection you specified.

Method : POST

URL : /pembangunan/(ID)

Body : JSON

{
"nama_pembangunan": "Irigasi 3",
"sumber_dana": "Dana Desa",
"tahun": "2022",
"dusun_id": 1,
"rw_id": 1,
"rt_id": 1
}

Response : 200 OK

{
"message": "Success update pembangunan",
"status": 200
}

Response : 422 UNPROCESSABLE CONTENT

{
"error": {
"nama_pembangunan": ["The nama pembangunan field is required."],
"sumber_dana": ["The sumber dana field is required."],
"tahun": ["The tahun field is required."],
"dusun_id": ["The dusun id field is required."],
"rw_id": ["The rw id field is required."],
"rt_id": ["The rt id field is required."]
}
}

Response : 500 ERROR

Internal Server Error