GET api/tblMats
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of 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"
},
{
"id": 1,
"GrpId": 2,
"mName": "sample string 3",
"Prc": 4.1,
"Img": "QEA=",
"Note": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOftblMat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
<tblMat>
<GrpId>2</GrpId>
<Img>QEA=</Img>
<Note>sample string 5</Note>
<Prc>4.1</Prc>
<id>1</id>
<mName>sample string 3</mName>
</tblMat>
<tblMat>
<GrpId>2</GrpId>
<Img>QEA=</Img>
<Note>sample string 5</Note>
<Prc>4.1</Prc>
<id>1</id>
<mName>sample string 3</mName>
</tblMat>
</ArrayOftblMat>