-
Notifications
You must be signed in to change notification settings - Fork 0
/
routes.txt
35 lines (34 loc) · 1.03 KB
/
routes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
message
/message/addmessage { email, receiverprofileid, message }
/message/removemessage { messageid }
/message/getallchats { email }
/message/getchat { email, chatwithprofileid }
post
/post/createphoto { caption, email, link }
/post/createvideo { caption, email, link }
/post/delphoto { postid }
/post/delvideo { postid }
/post/reactphoto { postid, email, reactiontype }
/post/reactvideo { postid, email, reactiontype }
/post/removereact { reactionid }
/post/updatephoto { postid, caption, link }
/post/updatevideo { postid, caption, link }
socialnet
/socialnet/follow { followerprofileid, followedprofileid }
/socialnet/unfollow { followerprofileid, followedprofileid }
user
/user/signin { email, password }
{
"email": "[email protected]",
"password": "test2"
}
/user/signup { firstname, lastname, email, password, confirmpassword, dob, gender }
{
"firstname":"Hemabhushan",
"lastname":"R",
"email":"[email protected]",
"password":"test",
"confirmpassword":"test",
"dob":"2003-11-15",
"gender":"Male"
}