Note App
  1. Notes
Note App
  • Users
    • Signup
      POST
    • signin
      POST
    • signout
      POST
  • Notes
    • Add Note
      POST
    • Update Note
      PUT
    • Get All Note
      GET
    • Delete Note
      DELETE
  1. Notes

Update Note

PUT
http://{{sever_notes}}/updatenote/6784e39685260f900e739b04
copy id from _id from db and paste insted of 678405d71b160d180218a310 which is params

Request

Body Params application/json
title
string 
required
description
string 
required
Example
{
    "title":"first Note",
    "description":"first note added"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PUT 'http://{{sever_notes}}/updatenote/6784e39685260f900e739b04' \
--header 'Content-Type: application/json' \
--data-raw '{
    "title":"first Note",
    "description":"first note added"
}'

Responses

🟢200Success
application/json
Body
object {0}
Examples
{
    "data": {
        "title": "first Note",
        "description": "first note added"
    },
    "msg": "Task Updated Successfullt",
    "statuscode": 201,
    "success": true
}
Modified at 2025-01-13 10:24:32
Previous
Add Note
Next
Get All Note
Built with