POST api/v1/UOMList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UOMModel
NameDescriptionTypeAdditional information
UOMID

integer

None.

UOM

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UOMID": 1,
    "UOM": "sample string 2"
  },
  {
    "UOMID": 1,
    "UOM": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUOMModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <UOMModel>
    <UOM>sample string 2</UOM>
    <UOMID>1</UOMID>
  </UOMModel>
  <UOMModel>
    <UOM>sample string 2</UOM>
    <UOMID>1</UOMID>
  </UOMModel>
</ArrayOfUOMModel>