-
Notifications
You must be signed in to change notification settings - Fork 0
/
PostmanPrimeSoloRoutesv2.json
62 lines (62 loc) · 2.03 KB
/
PostmanPrimeSoloRoutesv2.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"info": {
"_postman_id": "5e3e8d98-813d-5d2a-a79a-39cd12328d63",
"name": "Prime Solo Routes",
"description": "Routes setup to test registration, login, and getting basic user data from the server.",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
{
"name": "http://localhost:5000/api/user/register",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"username\":\"new-user\",\n \"password\":\"1234\"\n}"
},
"url": "http://localhost:5000/api/user/register",
"description": "Registration"
},
"response": []
},
{
"name": "http://localhost:5000/api/user/login",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"username\":\"new-user\",\n \"password\":\"1234\"\n}"
},
"url": "http://localhost:5000/api/user/login",
"description": "Login"
},
"response": []
},
{
"name": "http://localhost:5000/api/user/",
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": []
},
"url": "http://localhost:5000/api/user/",
"description": "User Info"
},
"response": []
}
]
}