Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Request JSON

Expand
title body:

{

"doc": {

"ubki": {

"req_envelope": {

"req_xml": {

"request": {

"i": {

"ident": {

"okpo": "INN-RNUKPN (for natural persons)/EGPROU of the legal entity"

},

"additionaldata": {

"date": "Scoring date. Not filled in if the scoring is currently calculated",

"featlist": "List of indicators for calculation. Not to be filled in if all available metrics are calculated"

},

"reqlng": "Search criteria language (code from ref.23)"

},

"version": "1.0",

"reqtype": "Template code (code from ref.49): 'FeatureSet' - 41",

"reqreason": "Request objective (code from ref.24)"

},

"descr": "Request object"

},

"descr": "Request envelope"

},

"sessid": "Session key (obtained from the authorization API)"

}

}

}

Response JSON

Expand
titlebody:

{

"ubkidata": {

"tech": {

"trace": {

"step": {

"name": "Step name",

"stm": "Step start stamp date",

"ftm": "Step finish stamp date"

}

},

"error": {

"errtype": "Error code (code from ref.0)",

"errtext": "Error text (value from ref.0)"

},

"reqinfo": {

"reqid": "Outgoing request ID generated by UBKI"

},

"billing": {

"balance": {

"value": "Total assets",

"date": "Date",

"time": "Time"

}

}

},

"comp": {

"featureSet": {

"features": {

"name": "Name of predictor ",

"value": "Value of predictor "

},

"okpo": "INN-RNUKPN (for natural persons)/EGPROU of the legal entity",

"date": "Scoring date. Not filled in if the scoring is currently calculated"

},

"id": "60",

"descr": "Components name"

}

}

}

Request XML

Expand
title body:

<?xml version="1.0" encoding="utf-8"?>

<doc>

<ubki sessid="Session key (obtained from the authorization API)">

<req_envelope descr="Request envelope">

<req_xml descr="Request object">

<!-- Request parameters -->

<request version="1.0" reqtype="Template code (code from ref.49): 'FeatureSet' - 41" reqreason="Request objective (code from ref.24)">

<!-- Parameters describing search criteria-->

<i reqlng="Search criteria language (code from ref.23)">

<!-- Subject identification parameters-->

<ident okpo="INN-RNUKPN (for natural persons)/EGPROU of the legal entity" />

<additionaldata date="Scoring date. Not filled in if the scoring is currently calculated"

featlist="List of indicators for calculation. Not to be filled in if all available metrics are calculated" />

</i>

</request>

</req_xml>

</req_envelope>

</ubki>

</doc>

...

Request JSON

Code Block
{
	"doc": {
		"ubki": {
			"req_envelope": {
				"req_xml": {
					"request": {
						"i": {
							"ident": {
								"okpo": "2111118724"
							},
							"additionaldata": {
								"featlist": "od1,ch1,ch537,od193,od834,od67,od301",
								"date": "2019-02-01"
							},
							"reqlng": "4"
						},
						"version": "1.0",
						"reqtype": "41",
						"reqreason": "2"
					}
				}
			},
			"sessid": "EDF4309796114D6D9B8365370DA2DEE9"
		}
	}
}

Response JSON

Code Block
{
	"ubkidata": {
		"tech": {
			"trace": {
				"step": {
					"name": "build report",
					"stm": "2022-08-29 14:01:58.101",
					"ftm": "2022-08-29 14:01:59.444"
				}
			},
			"reqinfo": {
				"reqid": "req2#000002461665"
			}
		},
		"comp": {
			"featureSet": {
				"features": [
					{
						"name": "ch308",
						"value": "0.0"
					},
					{
						"name": "ch318",
						"value": "5915.82"
					},
					{
						"name": "od1089",
						"value": "61.2"
					},
					{
						"name": "od1081",
						"value": "52.33"
					}
				],
				"okpo": "2111118724",
				"date": "2019-02-01"
			},
			"id": "60",
			"descr": "FeatureSet"
		}
	}
}

Request XML

Code Block
<?xml version="1.0" encoding="UTF-8"?>
<doc>
  <ubki sessid="EDF4309796114D6D9B8365370DA2DEE9">
    <req_envelope>
      <req_xml>
        <request version="1.0" reqtype="41" reqreason="2">
          <i reqlng="4">
            <ident okpo="2111118724">
            </ident>
            <additionaldata featlist="od1,ch1,ch537,od193,od834,od67,od301" date="2019-02-01" />
          </i>
        </request>
      </req_xml>
    </req_envelope>
  </ubki>
</doc>

...