Authorization: Bearer ********************curl --location --request PATCH 'https://v1.dev.bukalombok.com/v1/superadmin/managment/faq/bulk-update' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"ids": [
"uuid-1",
"uuid-2",
"uuid-3"
],
"is_active": false
}'{
"meta": {
"success": true,
"status": 200,
"message": "3 FAQ berhasil diperbarui"
},
"data": [
{
"id": "uuid-1",
"is_active": false
},
{
"id": "uuid-2",
"is_active": false
},
{
"id": "uuid-3",
"is_active": false
}
]
}