Finance Tracker API
Github
Github
  1. Setting
  • Auth
    • Login
      POST
    • Register
      POST
    • Login Google
      GET
    • Login Google Callback
      GET
  • User
    • Get Me
      GET
    • Update Profile
      PUT
    • Change Password
      PUT
    • Set Password for User Register by Google
      PUT
    • Get Password Status
      GET
  • Category
    • Create Category
      POST
    • Update Category
      PUT
    • Get Category by User
      GET
    • Delete Category
      DELETE
  • Wallet
    • Create Wallet
      POST
    • Update Wallet
      PUT
    • Get Wallet by User
      GET
    • Delete Wallet
      DELETE
  • Transaction
    • Delete Transaction
      DELETE
    • Get Transaction by User
      GET
    • Update Transaction
      PUT
    • Create Transaction
      POST
  • Setting
    • Get Setting
      GET
    • Update Setting
      PUT
  • Report
    • Get Wallet Summary
    • Get Chart Line Data
    • Get Chart Pie Data
  1. Setting

Update Setting

Developing
PUT
/setting
Maintainer:Sofyan R.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://localhost:3000/setting' \
--header 'Content-Type: application/json' \
--data-raw '{
  "currency": "IDR"
}'
Response Response Example
{
    "success": true,
    "message": "User setting updated successfully",
    "data": {
        "id": "90e5a369-8b5f-426c-bde9-25653068dbb5",
        "userId": "1a951327-7814-402e-a1f6-0cf1faefa68b",
        "currency": "IDR",
        "createdAt": "2025-07-24T06:04:43.675Z",
        "modifiedAt": "2025-07-24T07:55:50.677Z"
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Modified at 2025-07-24 07:55:27
Previous
Get Setting
Next
Get Wallet Summary
Built with