- add update accounts to account.http - add updateAccount to AccountController - add AccountEntity updateAccountEntity to Mapping.kt - add updateAccount in AccountService - update catalog version in gradle.properties
51 lines
933 B
HTTP
51 lines
933 B
HTTP
### get user by id
|
|
GET {{hostname}}/account-00000000-0000-7000-0000-000000000001
|
|
|
|
### add user
|
|
POST {{hostname}}/account
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"username": "user01010101",
|
|
"password": "p4ssw0rd",
|
|
"enabled": true,
|
|
"roles": [
|
|
"ROLE_ADMIN",
|
|
"ROLE_TEST"
|
|
]
|
|
}
|
|
|
|
### Get accounts
|
|
GET {{hostname}}/accounts
|
|
|
|
### Get accounts by page
|
|
GET {{hostname}}/accounts/page-1
|
|
|
|
### Get accounts by page and size
|
|
GET {{hostname}}/accounts/page-1/show-5
|
|
|
|
### update user all information
|
|
PUT {{hostname}}/account-00000000-0000-7000-0000-000000000002
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"username": "user",
|
|
"password": "pass",
|
|
"enabled": true,
|
|
"roles": [
|
|
"ROLE_TEST"
|
|
]
|
|
}
|
|
|
|
### update user information
|
|
PUT {{hostname}}/account-00000000-0000-7000-0000-000000000002
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"username": "user",
|
|
"enabled": true,
|
|
"roles": [
|
|
"ROLE_TEST"
|
|
]
|
|
}
|