Authentication

REST URL - https://<IP>:<port>/provapi/authenticate

SUPPORTED METHOD -  POST

HEADER - Authorization

Sample Request Body
{
"password": "string",
"username": "string"
}
Sample Response Body
{ "token": "string" }

Sample Input Body
{
"password": "Admin1234!",
"username": "isradmin@oracle.com"
}
Sample Output Response
{ "token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJpc3JhZG1pbkBvcmFjbGUuY29tIiwiaWF0IjoxNTgzMjE0MjkyLCJleHAiOjE1ODMyMzIyOTJ9.bJUgy9P8SDbQl-ulxm53q-5oxRuk28ulinyZc1vTjj30HWQZoa8GUlK-F-a4hW_ha013HV1KiwmXAUHlI9ZHZw" }