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

Signup

POST
http://{{server_users}}/signup

Request

Body Params application/json
username
string 
required
password
string 
required
email
string 
required
Example
{
    "username":"test1",
    "password":"12345",
    "email":"hello1@test.com"
}

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 POST 'http://{{server_users}}/signup' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username":"test1",
    "password":"12345",
    "email":"hello1@test.com"
}'

Responses

🟢200Success
application/json
Body
object {0}
Examples
{
    "data": "User Created successfully",
    "msg": {
        "username": "test1",
        "password": "$2b$10$nt49U4x8mIkc88U8AbFxpOmORTVMwLcLM50PxHzdI2fzHRqRxrDca",
        "email": "hello1@test.com",
        "_id": "6784e36d85260f900e739af5",
        "__v": 0
    },
    "statuscode": 200,
    "success": true
}
Modified at 2025-01-13 10:19:20
Next
signin
Built with