GET api/upper/store/st_id/{st_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| st_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of v_Store_Upper_Models| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| st_id | integer |
None. |
|
| barsket_no | string |
None. |
|
| model_no | string |
None. |
|
| model_color | string |
None. |
|
| size | string |
None. |
|
| amount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"st_id": 2,
"barsket_no": "sample string 3",
"model_no": "sample string 4",
"model_color": "sample string 5",
"size": "sample string 6",
"amount": 7
},
{
"id": 1,
"st_id": 2,
"barsket_no": "sample string 3",
"model_no": "sample string 4",
"model_color": "sample string 5",
"size": "sample string 6",
"amount": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfv_Store_Upper_Models xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Models.ProductionLine.Upper.View">
<v_Store_Upper_Models>
<amount>7</amount>
<barsket_no>sample string 3</barsket_no>
<id>1</id>
<model_color>sample string 5</model_color>
<model_no>sample string 4</model_no>
<size>sample string 6</size>
<st_id>2</st_id>
</v_Store_Upper_Models>
<v_Store_Upper_Models>
<amount>7</amount>
<barsket_no>sample string 3</barsket_no>
<id>1</id>
<model_color>sample string 5</model_color>
<model_no>sample string 4</model_no>
<size>sample string 6</size>
<st_id>2</st_id>
</v_Store_Upper_Models>
</ArrayOfv_Store_Upper_Models>