Update questions of the user.

put

/oaa-kba/runtime/kba/v1/getquestionssecurely

Questions that are associated with the user are returned. If user information is present, questions associated with the user is returned. These are questions preselected by the system to be used for KBA challenge.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: object
User related data. userid is mandatory parameter. API call should be made with canonical uniqueUserId along with userid and group. If userid and group combination is unique, the call can also be made using userid and group.
Show Source
Request Body - application/json ()
Root Schema : schema
Type: object
User related data. userid is mandatory parameter. API call should be made with canonical uniqueUserId along with userid and group. If userid and group combination is unique, the call can also be made using userid and group.
Show Source
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : QuestionsResponse
Type: object
Show Source
Nested Schema : choices
Type: array
Show Source
Nested Schema : Choice
Type: object
Show Source
Nested Schema : questions
Type: array
Show Source
Nested Schema : Question
Type: object
Show Source

401 Response

Unauthorized. User credentials invalid or not provided.
Body ()
Root Schema : KBAAPIResponse
Type: object
Show Source

422 Response

failed to get user questions for requested user.
Body ()
Root Schema : KBAAPIResponse
Type: object
Show Source

500 Response

Server error.
Body ()
Root Schema : KBAAPIResponse
Type: object
Show Source
Back to Top

Examples

The following example shows a sample request and response for retrieving questions securely for a user. The questions associated with the user are returned if the user information is present. The system has preselected these questions to be used for the KBA challenge.

cURL Command to Retrieve a List of Questions Securely in JSON Format

curl --location --request PUT '<OAAService>/oaa-kba/runtime/kba/v1/getquestionssecurely' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '{
        "userid": "user1",
        "group": "financeapp",
        "uniqueUserId": "22a29071-16f2-4b69-a94c-73be672e34eb"
}'

Sample Response in JSON Format

{
    "status": "0",
    "message": "Successfully processed the request.",
    "choices": [
        {
            "questions": [
                {
                    "questionId": 51,
                    "question": "What is your youngest child's nickname?",
                    "active": false
                },
                {
                    "questionId": 106,
                    "question": "What was your favorite dessert as a child?",
                    "active": false
                },
                {
                    "questionId": 38,
                    "question": "What was the name of your first roommate in college?",
                    "active": false
                },
                {
                    "questionId": 52,
                    "question": "What is your eldest child's nickname?",
                    "active": false
                },
                {
                    "questionId": 53,
                    "question": "What was the name of the hospital your youngest child was born in?",
                    "active": false
                }
            ]
        },
        {
            "questions": [
                {
                    "questionId": 12,
                    "question": "What was the name of the hospital your eldest child was born in?",
                    "active": false
                },
                {
                    "questionId": 107,
                    "question": "What is your all time favorite video game?",
                    "active": false
                },
                {
                    "questionId": 39,
                    "question": "What was the first name of your high school best friend?",
                    "active": false
                },
                {
                    "questionId": 49,
                    "question": "What was your oldest child's birth weight?",
                    "active": false
                },
                {
                    "questionId": 50,
                    "question": "What was your youngest child's birth weight?",
                    "active": false
                }
            ]
        },
        {
            "questions": [
                {
                    "questionId": 108,
                    "question": "What was your favorite food as a child?",
                    "active": false
                },
                {
                    "questionId": 40,
                    "question": "What was the last name of your high school best friend?",
                    "active": false
                },
                {
                    "questionId": 59,
                    "question": "What was your first dog's name?",
                    "active": false
                },
                {
                    "questionId": 109,
                    "question": "What is your favorite style of music?",
                    "active": false
                },
                {
                    "questionId": 110,
                    "question": "What is your favorite play?",
                    "active": false
                }
            ]
        }
    ]
}

cURL Command to Retrieve a List of Questions Securely in XML Format

curl --location --request PUT '<OAAService>/oaa-kba/runtime/kba/v1/getquestionssecurely' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '
<?xml version="1.0" encoding="UTF-8" ?>
<User>
	<userid>user1</userid>
	<group>financeapp</group>
	<uniqueUserId>22a29071-16f2-4b69-a94c-73be672e34eb</uniqueUserId>
</User>
'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<QuestionsResponse>
	<status>0</status>
	<message>Successfully processed the request.</message>
	<choices>
		<questions>
			<questionId>52</questionId>
			<question>What is your eldest child's nickname?</question>
			<active>true</active>
		</questions>
		<questions>
			<questionId>21</questionId>
			<question>What is the first name of your significant other's eldest sibling?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>6</questionId>
			<question>What is your maternal grandfather's first name?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>44</questionId>
			<question>What was your favorite elective subject in high school?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>90</questionId>
			<question>What is your favorite childhood song?</question>
			<active>false</active>
		</questions>
	</choices>
	<choices>
		<questions>
			<questionId>89</questionId>
			<question>What was your favorite restaurant in high school?</question>
			<active>true</active>
		</questions>
		<questions>
			<questionId>34</questionId>
			<question>What year did you purchase your first car?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>61</questionId>
			<question>Other than where you live, what's your favorite city?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>124</questionId>
			<question>What was the year of your favorite soccer World Cup?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>57</questionId>
			<question>What color was your first pet?</question>
			<active>false</active>
		</questions>
	</choices>
	<choices>
		<questions>
			<questionId>56</questionId>
			<question>Where did you get your first pet?</question>
			<active>true</active>
		</questions>
		<questions>
			<questionId>4</questionId>
			<question>What was the first street you lived on?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>13</questionId>
			<question>What is the most unusual job you have had?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>53</questionId>
			<question>What was the name of the hospital your youngest child was born in?</question>
			<active>false</active>
		</questions>
		<questions>
			<questionId>22</questionId>
			<question>What is your significant other's favorite color?</question>
			<active>false</active>
		</questions>
	</choices>
</QuestionsResponse>
Back to Top