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

signout

POST
http://{{server_users}}/signout

Request

Body Params application/json
object {0}
Example
{}

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}}/signout' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200Success
application/json
Body
object {0}
Examples
{
    "data": {
        "user": "User Logged Out"
    },
    "msg": "logged Out successfully",
    "statuscode": 200,
    "success": true
}
Modified at 2025-01-13 10:22:43
Previous
signin
Next
Add Note
Built with