Skip to main content
Version: 1.0.2

Get Questionnaires By Product

'GetQuestionnariesByProduct' API enables to fetch the questionnaire

Questionnaire - refers to a structured set of questions designed to collect specific information about customer for onboarding

Bank or financial institution can fetch the questionnaire mapped for required product. On providing product name as request, question details of the questionnaire can be fetched out.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to get questionnaire by product through program setting servic

Constant value: "ProgramSettingService.GetQuestionnairesByProduct"

id

Mandatory

String

Unique ID of API request

Sample value: "1"

params

Mandatory

Object

api

Mandatory

Object

signature

Mandatory

String

Signature for request validation

Sample value: "signature"

keyId

Mandatory

String

API key used for request authentication

Sample value: "ApplicationKeyId"

credential

Mandatory

String

API credential provided by NetXD

Sample value: "Credential"

payload

Mandatory

Object

name

Mandatory

String

Name of the product

Sample value: "DEFAULT"


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"ProgramSettingService.GetQuestionnairesByProduct","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"name":"DEFAULT"}}}'

Body


{
"method": "ProgramSettingService.GetQuestionnairesByProduct",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"name": "DEFAULT"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value: "1"

result

Object

questionnaires

Object

ID

String

Unique ID of the questionnaire

Sample value: "64f195eb77f796c5ba8724c7"

name

String

Name of the questionnaire

Sample value: "demo_1"

questions

Array

uid

String

Unique ID of the question

Sample value: "f671267131aa4ea5945d1faa655d4162"

title

String

Title of the question Sample value: "Business classification"

question

String

Question that is being asked

Sample value: "Is the Business a Money Service Business (\"MSB\")?*"

mandatory

Boolean

Indicates whether this question is mandatory (true) or optional (false)

Sample value: true

optionType

String

Type of option given for the question

Sample value: "MultipleChoice"

optionValue

String

Possible values applicable for the question

Sample value: "Yes, No"

page

String

Page number where the question is located within the questionnaire

Sample value: "2"

hint

String

Additional information given related to the question

Sample value: "testing"

createdDate

String

Date and time when the questionnaire was created

Sample value: "2023-09-01T07:42:35.542Z"

updatedDate

String

Date and time when the questionnaire was last updated

Sample value: "2023-09-01T07:42:35.542Z"


{
"id": "1",
"result": {
"questionnaires": {
"ID": "64f195eb77f796c5ba8724c7",
"name": "demo_1",
"questions": [
{
"uid": "f671267131aa4ea5945d1faa655d4162",
"title": "Business classification",
"question": "Is the Business a Money Service Business (\"MSB\")?*",
"mandatory": true,
"optionType": "MultipleChoice",
"optionValue": "Yes, No",
"page": "2",
"hint": "testing"
}
],
"createdDate": "2023-09-01T07:42:35.542Z",
"updatedDate": "2023-09-01T07:42:35.542Z"
}
}
}