curl --location --request PUT 'http://localhost:3000/category/0855def1-8644-4cec-8b00-d15b73166312' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Belanja",
"type": "income", // income | expense
"icon": "😊",
"color": "#EF4444"
}'
{
"success": true,
"message": "Category updated successfully",
"data": {
"id": "0855def1-8644-4cec-8b00-d15b73166312",
"name": "Belanja",
"type": "income",
"icon": "😊",
"color": "#EF4444",
"userId": "1a951327-7814-402e-a1f6-0cf1faefa68b",
"createdAt": "2025-07-24T06:09:45.983Z",
"modifiedAt": "2025-07-24T06:10:06.803Z"
}
}