Create Kelompok

To create 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 : /kelompok

Body : JSON

{
"nama_kelompok": "Kelompok D",
"mr_kelompok_id": "27",
"ketua_id": "1",
"dusun_id": "1",
"rw_id": "1",
"rt_id": "1"
}

Response : 200 OK

{
"message": "Success create kelompok",
"status": 200
}

Response : 422 UNPROCESSABLE CONTENT

{
"error": {
"nama_kelompok": ["Nama Kelompok Tidak boleh kosong"],
"mr_kelompok_id": ["MR Kelompok ID Tidak boleh kosong"],
"ketua_id": ["Ketua ID Tidak boleh kosong"],
"dusun_id": ["Dusun ID Tidak boleh kosong"],
"rw_id": ["RW ID Tidak boleh kosong"],
"rt_id": ["RT ID Tidak boleh kosong"]
}
}

Response : 500 ERROR

Internal Server Error