GET api/v7/UOM/{UomCode}
Retrieve the Unit of Measure information for given UOM Code
Request Information
URI Parameters
Name | Description | Type | Required? | Additional information |
---|---|---|---|---|
UomCode * |
The UOM Code to search for UOM |
string |
Yes |
None. |
Body Parameters
None.
Response Information
Resource Description
Unit of Measure Information
Unit of MeasureName | Description | Type |
---|---|---|
UOMCode |
UOM Code |
string |
Name |
UOM Name |
string |
customerAuditDate |
Audit information |
date |
culture |
Culture Code. For example: en-US, fr, fr-CA, es, ja-JP etc. |
string |
description |
Description Text (Culture specific) |
string |
Response Formats
application/json, text/json
Sample:
{ "UOMCode": "2", "Name": "Metre", "customerAuditDate": "2018-01-01T00:00:00", "culture": "en-US", "description": "Metric System" }
application/xml, text/xml
Sample:
<UOM xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <culture>en-US</culture> <description>Metric System</description> <customerAuditDate>2018-01-01T00:00:00</customerAuditDate> <UOMCode>2</UOMCode> <Name>Metre</Name> </UOM>