Skip to main content
Version: v2

ILT Service

Income and burden evaluation has the same working method as the Benchmark Service. It is a collection of indicators that our clients can use to evaluate the income and burdens of a data set.

Calling the ILT service

Endpoint:      https://linx.invers.nl:8100/api/linx/ilt
Method: POST

Header: ApiKey: string (required)
X-Request-ID: string (required)
ClientId: string (optional)
InputHash: string (optional)

Body: Data: byte[] (required)

Errors: 400, 403 or 500

More Information on the output

The output is a set of indicators, for more information see Benchmark Service and the example output below.

Output (example)


[
{
"$type": "LinX.Sdk.Proxy.Entities.BenchmarkResult, LinX.Platform.Sdk.Proxy",
"id": 3,
"name": "Inkomsten Lasten Toets",
"description": "Algemene Inkomsten Lasten Toest t.b.v. kredieten",
"contract": "NL83INGB0477569587",
"result": [
{
"indicator": {
"id": 1,
"customerId": "redacted",
"name": "Aantal maanden",
"description": "Aantal maanden waarop deze download betrekking op heeft",
"includeInternals": false,
"includeTransactions": false,
"threshold": 0,
"lowerBound": 0,
"upperBound": 0
},
"value": {
"name": "Aantal maanden",
"value": 3,
"unit": "count",
"transactions": []
},
"measurements": [
{
"name": "januari",
"value": 0,
"unit": "count",
"transactions": []
},
{
"name": "Mean",
"value": 0,
"unit": "value",
"transactions": []
},
{
"name": "StandardDeviation",
"value": 0,
"unit": "value",
"transactions": []
}
]
}
]
}
]