GET api/PlanningDepartment/move-plan/get-line/{model_no}/{prd_lct_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| model_no | string |
Required |
|
| prd_lct_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
m_Location| Name | Description | Type | Additional information |
|---|---|---|---|
| prd_lct_id | integer |
None. |
|
| lct_name | string |
None. |
|
| lines | Collection of m_line |
None. |
Response Formats
application/json, text/json
Sample:
{
"prd_lct_id": 1,
"lct_name": "sample string 2",
"lines": [
{
"prd_line_id": 1,
"line_name": "sample string 2"
},
{
"prd_line_id": 1,
"line_name": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<m_Location xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Models.ProductionLine.Planning_Department">
<lct_name>sample string 2</lct_name>
<lines>
<m_line>
<line_name>sample string 2</line_name>
<prd_line_id>1</prd_line_id>
</m_line>
<m_line>
<line_name>sample string 2</line_name>
<prd_line_id>1</prd_line_id>
</m_line>
</lines>
<prd_lct_id>1</prd_lct_id>
</m_Location>