Get questions of the user.
get
/oaa-kba/runtime/kba/v1/questions
Since 12.2.1.4.1-20230630, this method is deprecated.
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
Query Parameters
-
group: string
group of user for whom questions will be fetched.
-
userid: string
userid of user for whom questions will be fetched.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/xml
- application/json
200 Response
Success
Root Schema : QuestionsResponse
Type:
Show Source
object
-
choices: array
choices
-
message: string
Message related to the status of the request
-
status: string
Status of the request
Nested Schema : Question
Type:
Show Source
object
-
active: boolean
Default Value:
true
If true, this question is associated with user and will be used to challenge the user. -
answer: string
User's answer to question associated with user
-
question: string
question text associated with user
-
questionId: integer
(int64)
unique identifier of question associated with user
401 Response
Unauthorized. User credentials invalid or not provided.
422 Response
failed to get user questions for requested user.
500 Response
Server error.
Examples
The following example shows a sample request and response for retrieving questions associated with 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 in JSON Format
curl --location --request GET '<OAAService>/oaa-kba/runtime/kba/v1/questions?userid=user1&group=Default' \ --header 'Content-Type: application/json' \ --header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \ --data ''
Sample Response in JSON Format
{ "status": "0", "message": "Successfully processed the request.", "choices": [ { "questions": [ { "questionId": 2, "question": "What was your father's profession when you were born?", "active": false }, { "questionId": 41, "question": "What was the last name of your favorite teacher in High School?", "active": false }, { "questionId": 5, "question": "What is the first name of your mother's eldest sibling?", "active": false }, { "questionId": 33, "question": "How much did you pay for your first car?", "active": false }, { "questionId": 17, "question": "What was the first name of your first boss?", "active": false } ] }, { "questions": [ { "questionId": 87, "question": "What was the name of your favorite childhood musical group?", "active": false }, { "questionId": 50, "question": "What was your youngest child's birth weight?", "active": false }, { "questionId": 126, "question": "What year was your favorite Super Bowl?", "active": false }, { "questionId": 23, "question": "What was your first sweetheart's first name?", "active": false }, { "questionId": 54, "question": "What breed was your first dog?", "active": false } ] }, { "questions": [ { "questionId": 60, "question": "What is your best friend's birthday?", "active": false }, { "questionId": 3, "question": "What was your birth weight?", "active": false }, { "questionId": 42, "question": "What was the last name of your favorite professor in college?", "active": false }, { "questionId": 6, "question": "What is your maternal grandfather's first name?", "active": false }, { "questionId": 34, "question": "What year did you purchase your first car?", "active": false } ] } ] } }
cURL Command to Retrieve a List of Questions in XML Format
curl --location --request GET '<OAAService>/oaa-kba/runtime/kba/v1/questions?userid=user1&group=financeapp' \ --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"?> <QuestionsResponse> <status>0</status> <message>Successfully processed the request.</message> <choices> <questions> <questionId>38</questionId> <question>What was the name of your first roommate in college?</question> <active>false</active> </questions> <questions> <questionId>51</questionId> <question>What is your youngest child's nickname?</question> <active>false</active> </questions> <questions> <questionId>52</questionId> <question>What is your eldest child's nickname?</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>106</questionId> <question>What was your favorite dessert as a child?</question> <active>false</active> </questions> </choices> <choices> <questions> <questionId>12</questionId> <question>What was the name of the hospital your eldest child was born in?</question> <active>false</active> </questions> <questions> <questionId>39</questionId> <question>What was the first name of your high school best friend?</question> <active>false</active> </questions> <questions> <questionId>49</questionId> <question>What was your oldest child's birth weight?</question> <active>false</active> </questions> <questions> <questionId>50</questionId> <question>What was your youngest child's birth weight?</question> <active>false</active> </questions> <questions> <questionId>107</questionId> <question>What is your all time favorite video game?</question> <active>false</active> </questions> </choices> <choices> <questions> <questionId>40</questionId> <question>What was the last name of your high school best friend?</question> <active>false</active> </questions> <questions> <questionId>59</questionId> <question>What was your first dog's name?</question> <active>false</active> </questions> <questions> <questionId>108</questionId> <question>What was your favorite food as a child?</question> <active>false</active> </questions> <questions> <questionId>109</questionId> <question>What is your favorite style of music?</question> <active>false</active> </questions> <questions> <questionId>110</questionId> <question>What is your favorite play?</question> <active>false</active> </questions> </choices> </QuestionsResponse>