GET v1/Uoms
Get a list with all available UOMs.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of Culture objects.
Collection of UOM| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
None. |
| Name |
Gets or sets the name. |
string |
None. |
| Type |
Gets or sets the UOM type. |
UomTypeEnum |
None. |
| Factor |
Gets or sets the Factor |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Type": 1,
"Factor": 3.0
},
{
"Id": 1,
"Name": "sample string 2",
"Type": 1,
"Factor": 3.0
}
]
application/xml, text/xml
Sample:
<ArrayOfUOM xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UOM>
<Id>1</Id>
<Name>sample string 2</Name>
<Type>Quantity</Type>
<Factor>3</Factor>
</UOM>
<UOM>
<Id>1</Id>
<Name>sample string 2</Name>
<Type>Quantity</Type>
<Factor>3</Factor>
</UOM>
</ArrayOfUOM>