GET api/JDData/GetImplementType?ImplementTypeID={ImplementTypeID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ImplementTypeID

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

Collection of ImplementTypeViewModel
NameDescriptionTypeAdditional information
ImplementTypeID

integer

None.

ImplementTypeName

string

None.

IsActive

string

None.

Status

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "implementTypeID": 1,
    "implementTypeName": "sample string 2",
    "isActive": "sample string 3",
    "status": "sample string 4"
  },
  {
    "implementTypeID": 1,
    "implementTypeName": "sample string 2",
    "isActive": "sample string 3",
    "status": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfImplementTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ImplementTypeViewModel>
    <ImplementTypeID>1</ImplementTypeID>
    <ImplementTypeName>sample string 2</ImplementTypeName>
    <IsActive>sample string 3</IsActive>
    <Status>sample string 4</Status>
  </ImplementTypeViewModel>
  <ImplementTypeViewModel>
    <ImplementTypeID>1</ImplementTypeID>
    <ImplementTypeName>sample string 2</ImplementTypeName>
    <IsActive>sample string 3</IsActive>
    <Status>sample string 4</Status>
  </ImplementTypeViewModel>
</ArrayOfImplementTypeViewModel>