Get final auth status

get

/customercare/v1/{customerId}/status

Return the final authentication status of a user. This method does not fetch data more than 30 days old.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : AuthStatusResponse
Type: object
Show Source
Nested Schema : StatusResponse
Type: object
Status information for API call
Show Source

400 Response

Invalid input

404 Response

Customer ID not found
Back to Top

Examples

The following example shows a sample request and response for obtaining the user's final authentication status.

cURL Command to Obtain Final Authentication Status in JSON Format

curl --location --request GET '<RISKCC>/risk-cc/customercare/v1/{customerId}/status?requestId=9b48bc01-35af-4fe9-9328-518d757b5896' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in JSON Format

{
  "AuthStatusResponse": {
    "authStatus": "0",
    "statusResponse": {
      "responseCode": "0",
      "responseMessage": "",
      "status": "true"
    }
  }
}

cURL Command to Obtain Final Authentication Status in XML Format

curl --location --request GET '<RISKCC>/risk-cc/customercare/v1/{customerId}/status?requestId=9b48bc01-35af-4fe9-9328-518d757b5896' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AuthStatusResponse>
    <authStatus>0</authStatus>
    <statusResponse>                                                                
        <responseCode>0</responseCode>
        <responseMessage></responseMessage>
        <status>true</status>
    </statusResponse>
</AuthStatusResponse>
Back to Top