Update the authentication status of the session

put

https://oaainstall-host/risk-analyzer/session/v1/updatesessionsecurely

Authentication status reflect the status if user login.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: object
Session data present in the request.
Show Source
Request Body - application/json ()
Root Schema : schema
Type: object
Session data present in the request.
Show Source
Back to Top

Response

Supported Media Types

200 Response

User authentication session status is updated
Body ()
Root Schema : StatusResponse
Type: object
Status information for API call
Show Source
Nested Schema : SessionUserData
Type: object
user related data
Show Source

400 Response

Invalid input
Body ()
Root Schema : StatusResponse
Type: object
Status information for API call
Show Source
Nested Schema : SessionUserData
Type: object
user related data
Show Source

401 Response

Unauthorized

500 Response

Internal server error

503 Response

Service Unavailable
Back to Top

Examples

The following example shows a sample request and response for updating the session status for a user authentication.

cURL Command to Update the Session Status in JSON Format

curl --location --request PUT '<RISK>/risk-analyzer/session/v1/updatesessionsecurely' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '{
        "requestId":"96eb744b-b84e-4c13-8b78-06b64ad81d94",
        "authenticationStatus": "999",
        "registerDevice": "true",
        "clientApplication": "OAA Update",
        "clientType": "0",
        "clientVersion": "12.2.1.4.2",
        "analyzePatterns": "true"
}'

Sample Response in JSON Format

{
    "responseCode": "0",
    "responseMessage": "",
    "status": true,
    "sessionId": "96eb744b-b84e-4c13-8b78-06b64ad81d94"
}

cURL Command to Update the Session Status in XML Format

curl --location --request PUT '<RISK>/risk-analyzer/session/v1/updatesessionsecurely' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '
<?xml version="1.0" encoding="UTF-8" ?>
<SessionData>
	<requestId>96eb744b-b84e-4c13-8b78-06b64ad81d94</requestId>
	<authenticationStatus>999</authenticationStatus>
	<registerDevice>true</registerDevice>
	<clientApplication>OAA Update</clientApplication>
	<clientType>0</clientType>
	<clientVersion>12.2.1.4.2</clientVersion>
	<analyzePatterns>true</analyzePatterns>
</SessionData>
'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<StatusResponse>
	<responseCode>0</responseCode>
	<responseMessage></responseMessage>
	<status>true</status>
	<sessionId>96eb744b-b84e-4c13-8b78-06b64ad81d94</sessionId>
</StatusResponse>
Back to Top