-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from dancier/feature/jetbrains-request-files
add first request files
- Loading branch information
Showing
3 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"Lokal": { | ||
"baseUrl": "http://localhost:8080", | ||
"user": { | ||
"email": "[email protected]", | ||
"password": "CHANGEME" | ||
} | ||
}, | ||
"Test (test.dancier.net)": { | ||
"baseUrl": "https://test-dancer.dancier.net", | ||
"user": { | ||
"email": "[email protected]", | ||
"password": "CHANGEME" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
### Login (run once to retrieve access token) | ||
POST {{baseUrl}}/authentication/login | ||
Content-Type: application/json | ||
|
||
{ | ||
"email": "{{user.email}}", | ||
"password": "{{user.password}}" | ||
} | ||
> {% client.global.set("access_token", response.body.accessToken); %} | ||
|
||
|
||
### Get user's proile (and save it) | ||
GET {{baseUrl}}/profile | ||
Authorization: Bearer {{access_token}} | ||
|
||
> {% client.global.set("profile", response.body.toString()); %} | ||
|
||
|
||
### Save user's profile | ||
PUT {{baseUrl}}/profile | ||
Content-Type: application/json | ||
|
||
{ | ||
"size": 130, | ||
"gender": "FEMALE", | ||
"birthDate": "1996-01-19", | ||
"ableTo": [ | ||
{ | ||
"dance": "Tango", | ||
"level": "BASIC", | ||
"leading": "LEAD" | ||
} | ||
], | ||
"wantsTo": [ | ||
{ | ||
"dance": "Tango", | ||
"level": "INTERMEDIATE", | ||
"leading": "FOLLOW" | ||
} | ||
], | ||
"email": "[email protected]", | ||
"zipCode": "10001", | ||
"city": "Hamburg", | ||
"country": "GER", | ||
"profileImageHash": "1a7efd460ee0be68011291c9f6b1ac5d9b03f9974b66c27b14e59887bf910f8c", | ||
"aboutMe": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
### Perform Captcha to Login as Human | ||
POST {{baseUrl}}/authentication/loginAsHuman | ||
X-Captcha-Token: token | ||
|
||
> {% client.global.set("access_token", response.body.accessToken); %} | ||
|
||
### Perform initial registration | ||
POST {{baseUrl}}/authentication/registrations | ||
Content-Type: application/json | ||
|
||
{ | ||
"acceptTermsAndConditions": true, | ||
"email": "{{user.email}}", | ||
"password": "{{user.password}}" | ||
|
||
} | ||
|
||
### verify email | ||
PUT {{baseUrl}}/authentication/email-validations/asdf | ||
Authorization: Bearer {{access_token}} | ||
|
||
### Login with new user | ||
POST {{baseUrl}}/authentication/login | ||
Content-Type: application/json | ||
|
||
{ | ||
|
||
} | ||
|
||
> {% client.global.set("access_token", response.body.accessToken); %} | ||
|
||
|
||
### Get user's profile | ||
GET {{baseUrl}}/profile | ||
Authorization: Bearer {{access_token}} |