Skip to content

rudrOwO/learn-web-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API Endpoints

1 /register endpoint for creating new users

  • user registers with email and password
  • User Model:
    {
        email: string // Primary Key
        firstName: string
        lastName: string
        passWord: string
    }

2 /login endpoint for logging (with JWT)

  • user logs in with email and password

3 /status endpoint for retrieving all statuses

4 /status/{id}

  • CRUD Operations on a single status
  • Status Model:
    {
        id: guid // Primary Key
        content: string
        createdAt: Date
        updatedAt: Date
    }

All users are friends by default

About

Trynna learn me some ASP.NET

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages