GET api/RiskParameters/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RiskParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| PARAM_ID | integer |
None. |
|
| DIV_ID | integer |
None. |
|
| RISK_ID | integer |
None. |
|
| PARAMETER | string |
None. |
|
| TYPE_ID | integer |
None. |
|
| ACTIVE | boolean |
None. |
|
| SEQ | integer |
None. |
|
| QID | integer |
None. |
|
| DEFAULT_VALUE_ID | integer |
None. |
|
| OLD | integer |
None. |
|
| values | Collection of RiskParameterValue |
None. |
|
| type | RiskParameterType |
None. |
|
| defaultValue | RiskParameterDefaultValue |
None. |
Response Formats
application/json, text/json
Sample:
{
"PARAM_ID": 1,
"DIV_ID": 2,
"RISK_ID": 3,
"PARAMETER": "sample string 4",
"TYPE_ID": 5,
"ACTIVE": true,
"SEQ": 7,
"QID": 1,
"DEFAULT_VALUE_ID": 1,
"OLD": 1,
"values": [
{
"ID": 1,
"DIV_ID": 2,
"PARAM_ID": 3,
"VALUE_LOW": 1.0,
"VALUE_HIGH": 1.0,
"VALUE_TEXT": "sample string 4",
"SCORE": 1.0,
"SEQ": 1,
"OLD": 1
},
{
"ID": 1,
"DIV_ID": 2,
"PARAM_ID": 3,
"VALUE_LOW": 1.0,
"VALUE_HIGH": 1.0,
"VALUE_TEXT": "sample string 4",
"SCORE": 1.0,
"SEQ": 1,
"OLD": 1
}
],
"type": {
"TYPE_ID": 1,
"DESCRIPTION": "sample string 2",
"HTML": "sample string 3",
"OLD": 1
},
"defaultValue": {
"ID": 1,
"SQL": "sample string 2",
"TYPE_ID": 3,
"PARAMETER": "sample string 4",
"VALUE": "sample string 5",
"OLD": 1
}
}
application/octet-stream
Sample:
{"PARAM_ID":1,"DIV_ID":2,"RISK_ID":3,"PARAMETER":"sample string 4","TYPE_ID":5,"ACTIVE":true,"SEQ":7,"QID":1,"DEFAULT_VALUE_ID":1,"OLD":1,"values":[{"ID":1,"DIV_ID":2,"PARAM_ID":3,"VALUE_LOW":1.0,"VALUE_HIGH":1.0,"VALUE_TEXT":"sample string 4","SCORE":1.0,"SEQ":1,"OLD":1},{"ID":1,"DIV_ID":2,"PARAM_ID":3,"VALUE_LOW":1.0,"VALUE_HIGH":1.0,"VALUE_TEXT":"sample string 4","SCORE":1.0,"SEQ":1,"OLD":1}],"type":{"TYPE_ID":1,"DESCRIPTION":"sample string 2","HTML":"sample string 3","OLD":1},"defaultValue":{"ID":1,"SQL":"sample string 2","TYPE_ID":3,"PARAMETER":"sample string 4","VALUE":"sample string 5","OLD":1}}