GET api/tblMats/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
tblMat| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| GrpId | integer |
None. |
|
| mName | string |
None. |
|
| Prc | decimal number |
None. |
|
| Img | Collection of byte |
None. |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"GrpId": 2,
"mName": "sample string 3",
"Prc": 4.1,
"Img": "QEA=",
"Note": "sample string 5"
}
application/xml, text/xml
Sample:
<tblMat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <GrpId>2</GrpId> <Img>QEA=</Img> <Note>sample string 5</Note> <Prc>4.1</Prc> <id>1</id> <mName>sample string 3</mName> </tblMat>