curl --location --request PUT 'http://localhost:3000/wallet/9622dd5b-524f-46f5-b58a-0f2785e2dbbf' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Tunai",
"balance": 0,
"type": "cash", // cash | bank | ewallet | investment
"color": "#EF4444"
}'
{
"success": true,
"message": "Wallet updated successfully",
"data": {
"id": "9622dd5b-524f-46f5-b58a-0f2785e2dbbf",
"name": "Tunai",
"balance": 0,
"income": 0,
"expense": 0,
"type": "cash",
"color": "#EF4444",
"userId": "dfa5a62f-0a5d-431c-ae61-9bf077721a1c",
"createdAt": "2025-07-24T04:06:35.238Z",
"modifiedAt": "2025-07-24T04:07:38.796Z"
}
}