/uvuyo/api/1.0/login
Login to the uvuyo cluster. This rest call must be called to authenticate to the system. It will return a web token which then needs to be used in the authorization section to authenticate to the system.
Body:
| Parameter | Description |
|---|---|
| username | The username to login to the uvuyo cluster |
| password | The passwword used to login to the uvuyo cluster |
Example:
{
"username": "admin",
"password": "shibuya"
}
Result:
| Parameter | Description |
|---|---|
| token | The token you need to use for all further requests to the uvuyo cluster |
Example:
{
"token": "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjpbIlJPTEVfQURNSU4iXSwic3ViIjoiYWRtaW4iLCJpYXQiOjE2ODE0NzY3NDYsImV4cCI6MTY4MTUwNTU0Nn0.FUMGM8bEAIdTThCe25iQc_NYCYMxE_BC1HujvufLH1Oet2yyi0kWZ0akKtYgF7MVcb5aOjJljEn6PyLbfgQaWQ"
}
