CortexSys Finance Managements
  1. Budgets
CortexSys Finance Managements
  • Auth
    • Register User
      POST
    • Login User
      POST
    • Refresh Token
      POST
    • User Info
      GET
  • Transactions
    • Get User Transactions
      GET
    • Create Transactions
      POST
    • Update Transaction
      PUT
    • Delete Transaction
      DELETE
  • Budgets
    • Get User Budget
      GET
    • Create Budget
      POST
    • Update Budget
      PUT
    • Delete Budget
      DELETE
  1. Budgets

Delete Budget

Developing
DELETE
http://localhost:8000/api/budgets/
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'http://localhost:8000/api/budgets/' \
--header 'Cookie: access_token=' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": 0
}'
Response Response Example
200 - Success
{
    "result": true,
    "massage": "Deleted budget successfully",
    "data": []
}

Request

Cookie Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠404Record Not Found
🟠401401
Modified at 2025-08-17 19:32:40
Previous
Update Budget
Built with