GET api/Uom/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Uom| Name | Description | Type | Additional information |
|---|---|---|---|
| UomId | integer |
None. |
|
| UomName | string |
None. |
|
| UomAbbrevation | string |
None. |
|
| CreatedDate | date |
Data type: DateTime |
|
| CreatedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UomId": 1,
"UomName": "sample string 2",
"UomAbbrevation": "sample string 3",
"CreatedDate": "2025-12-08T01:54:42.1113425+05:30",
"CreatedBy": "sample string 5"
}
application/xml, text/xml
Sample:
<Uom xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities"> <CreatedBy>sample string 5</CreatedBy> <CreatedDate>2025-12-08T01:54:42.1113425+05:30</CreatedDate> <UomAbbrevation>sample string 3</UomAbbrevation> <UomId>1</UomId> <UomName>sample string 2</UomName> </Uom>