GET api/v2/sampletypes/{sampleTypeId}/methods?translate={translate}

Request

URI Parameters

NameDescriptionTypeAdditional information
sampleTypeId

integer

Required

translate

boolean

Default value is False

Response

Collection of SampleTypeMethodBasic
NameDescriptionTypeAdditional 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"}}]