Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 426 Bytes

USER.md

File metadata and controls

34 lines (23 loc) · 426 Bytes

User

Rest api

Free

Create User

POST /V1/register

{
   "firstName" : "Iaccio",
   "lastName" : "Iaccio",
   "password" : "MySuperSecretPassword",
   "email": "[email protected]",
}

POST /V1/login

{
   "email" : "[email protected]",
   "password" : "MySuperSecretPassword"
}
Authenticated

HEADER Authorization Bearer <USER_TOKEN>

GET /V1/me