curl --location --request POST '/api/oauth/v1/token' \
--header 'Authorization;' \
--header 'Content-type: application/json' \
--data-raw '{
"grant_type": "password",
"password": "admin",
"username": "admin"
}'
{
"access_token": "string",
"expires_in": 0,
"refresh_token": "string",
"scope": "string",
"token_type": "string"
}