-
Notifications
You must be signed in to change notification settings - Fork 1
Api calls from web
Ru Yang edited this page Mar 16, 2022
·
6 revisions
-
METHOD & URL :
POST http://localhost:5069/api/users/login -
HEADER:
null- BODY:
{
"email":"email",
"password":"password"
}- SAMPLE RESPONSE BODY:
{
"message": "logged in",
"user": {
"_id": "62299989ca8da97c670fbcf3",
"username": "Tony",
"email": "hyhy123@gmail.com",
"password": "test12345",
"userImage": "https://media.istockphoto.com/vectors/user-icon-flat-style-isolated-on-white-background-vector-id1084418050?k=20&m=1084418050&s=612x612&w=0&h=pm3Ov7GL8rnKKqe98FEfoya6A6UK-z4Iv60LPbj38GE=",
"videos": [
"622aa84907a8529fe0e431c6"
],
"__v": 7,
"id": "62299989ca8da97c670fbcf3"
}
}