POST api/v2/MDLCalculation/{mDLCalculationId}/Calculate
Request
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| mDLCalculationId | integer |
Required |
Body Parameters
Collection of CalculateMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer | ||
| SampleAnalysisId | integer | ||
| InfoId | integer | ||
| MethodId | integer | ||
| QcTypeBlankId | integer | ||
| QcTypeSpikeId | integer | ||
| PublishDateTime | date |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"SampleAnalysisId": 2,
"InfoId": 3,
"MethodId": 4,
"QcTypeBlankId": 1,
"QcTypeSpikeId": 1,
"PublishDateTime": "2026-02-18T19:43:02.7802962Z"
},
{
"Id": 1,
"SampleAnalysisId": 2,
"InfoId": 3,
"MethodId": 4,
"QcTypeBlankId": 1,
"QcTypeSpikeId": 1,
"PublishDateTime": "2026-02-18T19:43:02.7802962Z"
}
]
text/html
Sample:
[{"Id":1,"SampleAnalysisId":2,"InfoId":3,"MethodId":4,"QcTypeBlankId":1,"QcTypeSpikeId":1,"PublishDateTime":"2026-02-18T19:43:02.7802962Z"},{"Id":1,"SampleAnalysisId":2,"InfoId":3,"MethodId":4,"QcTypeBlankId":1,"QcTypeSpikeId":1,"PublishDateTime":"2026-02-18T19:43:02.7802962Z"}]
Response
DefaultResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean | ||
| Messages | Collection of string | ||
| DialogType | integer | ||
| Data | Object |
Response Format
application/json, text/json
Sample:
{
"Success": true,
"Messages": [
"sample string 1",
"sample string 2"
],
"DialogType": 1,
"Data": {}
}
text/html
Sample:
{"Success":true,"Messages":["sample string 1","sample string 2"],"DialogType":1,"Data":{}}