GET api/v2/sampletypes/{sampleTypeId}/methods?translate={translate}
Request
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sampleTypeId | integer |
Required |
|
| translate | boolean |
Default value is False |
Response
Collection of SampleTypeMethodBasic| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer | ||
| SampleTypeId | integer | ||
| MethodMasterId | integer | ||
| MethodMaster | MethodMasterBasic |
Response Format
application/json, text/json
Sample:
[
{
"Id": 1,
"SampleTypeId": 2,
"MethodMasterId": 3,
"MethodMaster": {
"Active": true,
"Id": 2,
"Identification": "sample string 3"
}
},
{
"Id": 1,
"SampleTypeId": 2,
"MethodMasterId": 3,
"MethodMaster": {
"Active": true,
"Id": 2,
"Identification": "sample string 3"
}
}
]
text/html
Sample:
[{"Id":1,"SampleTypeId":2,"MethodMasterId":3,"MethodMaster":{"Active":true,"Id":2,"Identification":"sample string 3"}},{"Id":1,"SampleTypeId":2,"MethodMasterId":3,"MethodMaster":{"Active":true,"Id":2,"Identification":"sample string 3"}}]