POST api/HCS/GetHCSRawFPSchedule?line={line}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
line

string

Required

Body Parameters

HCSSchedulingCriteria
NameDescriptionTypeAdditional 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-05-15T10:33:20.5631362+00:00",
  "EndDate": "2025-05-15T10:33:20.5631362+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-05-15T10:33:20.5631362+00:00</BegDate>
  <CUSTNMBR>sample string 6</CUSTNMBR>
  <EndDate>2025-05-15T10:33:20.5631362+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
NameDescriptionTypeAdditional 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-05-15T10:33:20.5631362+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-05-15T10:33:20.5631362+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-05-15T10:33:20.5631362+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-05-15T10:33:20.5631362+00:00</SchedDate>
    <SchedQty>5</SchedQty>
  </RawFPSchedule>
</ArrayOfRawFPSchedule>