-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathapitests.http
More file actions
48 lines (37 loc) · 893 Bytes
/
Copy pathapitests.http
File metadata and controls
48 lines (37 loc) · 893 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Modern .NET and Cloud development API development inner-loop
# https://devblogs.microsoft.com/visualstudio/visual-studio-2022-17-5-released/#api
# CreateAccount
POST http://127.0.0.1:11500/CreateAccount
Content-Type: application/json
{
"Email": "Test6@com2us.com",
"Password": "TestPassword"
}
###
# Login
POST http://127.0.0.1:11500/Login
Content-Type: application/json
{
"Email": "Test6@com2us.com",
"Password": "TestPassword",
"AppVersion": 1,
"MasterDataVersion": 1
}
###
# GetMailList
POST http://127.0.0.1:11500/GetMailList
Content-Type: application/json
{
"Email": "Test6@com2us.com",
"AuthToken": "grukm5nt9k22i79tmb0fkckef",
"OpenPage": 1
}
###
# ReceiveMail
POST http://127.0.0.1:11500/ReceiveMail
Content-Type: application/json
{
"Email": "Test6@com2us.com",
"AuthToken": "grukm5nt9k22i79tmb0fkckef",
"MailId": 208
}