RESTFull user-service
curl --location 'http://localhost:8087/api/v1/users'
--header 'Content-Type: application/json'
--data '{
"namalengkap": "Jhon Wick",
"username": "jhon",
"password": "123",
"status": "1"
}'
curl --location 'http://localhost:8087/api/v1/users'
--header 'Content-Type: application/json'
--data '{
"userid":5,
"namalengkap": "Jhon Wick Updated",
"username": "jhonupdated",
"password": "123updated",
"status": "2"
}'
curl --location 'http://localhost:8087/api/v1/users/all'
curl --location 'http://localhost:8087/api/v1/users/5'
curl --location --request DELETE 'http://localhost:8087/api/v1/users/2'