Merge pull request 'chore: Add http requests for user' (!39) from chore/add-user-requests into main
Reviewed-on: https://git.simonis.lol/projects/casino/pulls/39 Reviewed-by: We ball <jan@kjan.email> Reviewed-by: Constantin Simonis <constantin@simonis.lol>
This commit is contained in:
commit
11213ec5f0
1 changed files with 18 additions and 0 deletions
18
backend/requests/user.http
Normal file
18
backend/requests/user.http
Normal file
|
@ -0,0 +1,18 @@
|
|||
### Get User by ID
|
||||
GET http://localhost:8080/user/52cc0208-a3bd-4367-94c5-0404b016a003
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Get current user with token
|
||||
GET http://localhost:8080/user
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Create User
|
||||
POST http://localhost:8080/user
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
{
|
||||
"keycloakId": "52cc0208-a3bd-4367-94c5-0404b016a003",
|
||||
"username": "john.doe"
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue