GET Characteristic/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CharacteristicView| Name | Description | Type | Additional information |
|---|---|---|---|
| CharacteristicId | integer |
None. |
|
| CharacteristicType | CharacteristicTypeView |
None. |
|
| Value | string |
None. |
|
| Measure | MeasureView |
None. |
Response Formats
application/json, text/json
Sample:
{
"CharacteristicId": 1,
"CharacteristicType": {
"CharacteristicTypeId": 1,
"SourceCode": "sample string 2"
},
"Value": "sample string 2",
"Measure": {
"MeasureId": 1,
"SourceCode": "sample string 2"
}
}
application/xml, text/xml
Sample:
<CharacteristicView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PackageSite.Models.View">
<CharacteristicId>1</CharacteristicId>
<CharacteristicType>
<SourceCode>sample string 2</SourceCode>
<CharacteristicTypeId>1</CharacteristicTypeId>
</CharacteristicType>
<Measure>
<SourceCode>sample string 2</SourceCode>
<MeasureId>1</MeasureId>
</Measure>
<Value>sample string 2</Value>
</CharacteristicView>