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