POST api/HCS/GetHCSRawFPSchedule?line={line}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| line | string |
Required |
Body Parameters
HCSSchedulingCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| FromMonth | string |
None. |
|
| ToMonth | string |
None. |
|
| BegDate | date |
None. |
|
| EndDate | date |
None. |
|
| ITEMNMBR | string |
None. |
|
| CUSTNMBR | string |
None. |
|
| RawITEMNMBR | string |
None. |
|
| PlantLines | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromMonth": "sample string 1",
"ToMonth": "sample string 2",
"BegDate": "2025-10-27T16:44:41.4010105+00:00",
"EndDate": "2025-10-27T16:44:41.4010105+00:00",
"ITEMNMBR": "sample string 5",
"CUSTNMBR": "sample string 6",
"RawITEMNMBR": "sample string 7",
"PlantLines": true
}
application/xml, text/xml
Sample:
<HCSSchedulingCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HCSAPI.DTOs"> <BegDate>2025-10-27T16:44:41.4010105+00:00</BegDate> <CUSTNMBR>sample string 6</CUSTNMBR> <EndDate>2025-10-27T16:44:41.4010105+00:00</EndDate> <FromMonth>sample string 1</FromMonth> <ITEMNMBR>sample string 5</ITEMNMBR> <PlantLines>true</PlantLines> <RawITEMNMBR>sample string 7</RawITEMNMBR> <ToMonth>sample string 2</ToMonth> </HCSSchedulingCriteria>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of RawFPSchedule| Name | Description | Type | Additional information |
|---|---|---|---|
| FPItemNmbr | string |
None. |
|
| FPItemDesc | string |
None. |
|
| LineID | string |
None. |
|
| SchedDate | date |
None. |
|
| SchedQty | decimal number |
None. |
|
| RawItemNmbr | string |
None. |
|
| RawTons | decimal number |
None. |
|
| RawPct | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FPItemNmbr": "sample string 1",
"FPItemDesc": "sample string 2",
"LineID": "sample string 3",
"SchedDate": "2025-10-27T16:44:41.4166283+00:00",
"SchedQty": 5.0,
"RawItemNmbr": "sample string 6",
"RawTons": 7.0,
"RawPct": 8.0
},
{
"FPItemNmbr": "sample string 1",
"FPItemDesc": "sample string 2",
"LineID": "sample string 3",
"SchedDate": "2025-10-27T16:44:41.4166283+00:00",
"SchedQty": 5.0,
"RawItemNmbr": "sample string 6",
"RawTons": 7.0,
"RawPct": 8.0
}
]
application/xml, text/xml
Sample:
<ArrayOfRawFPSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HCSAPI.DTOs">
<RawFPSchedule>
<FPItemDesc>sample string 2</FPItemDesc>
<FPItemNmbr>sample string 1</FPItemNmbr>
<LineID>sample string 3</LineID>
<RawItemNmbr>sample string 6</RawItemNmbr>
<RawPct>8</RawPct>
<RawTons>7</RawTons>
<SchedDate>2025-10-27T16:44:41.4166283+00:00</SchedDate>
<SchedQty>5</SchedQty>
</RawFPSchedule>
<RawFPSchedule>
<FPItemDesc>sample string 2</FPItemDesc>
<FPItemNmbr>sample string 1</FPItemNmbr>
<LineID>sample string 3</LineID>
<RawItemNmbr>sample string 6</RawItemNmbr>
<RawPct>8</RawPct>
<RawTons>7</RawTons>
<SchedDate>2025-10-27T16:44:41.4166283+00:00</SchedDate>
<SchedQty>5</SchedQty>
</RawFPSchedule>
</ArrayOfRawFPSchedule>