GET api/InvPackingType/GetByID?Id={Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

InvPackingType
NameDescriptionTypeAdditional information
Id

integer

None.

PackTypeCode

string

None.

PackTypeDesc

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "PackTypeCode": "sample string 2",
  "PackTypeDesc": "sample string 3"
}

application/xml, text/xml

Sample:
<InvPackingType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Architecture.Model.Inventory">
  <Id>1</Id>
  <PackTypeCode>sample string 2</PackTypeCode>
  <PackTypeDesc>sample string 3</PackTypeDesc>
</InvPackingType>