POST portal/api/Factory/v1/ItemFinishedRawItems

Request Information

URI Parameters

None.

Body Parameters

Collection of Object

None.

Request Formats

application/json, text/json, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Items
NameDescriptionTypeAdditional information
ItemCode

string

None.

ItemName

string

None.

ItemCost

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ItemCode": "sample string 1",
    "ItemName": "sample string 2",
    "ItemCost": "sample string 3"
  },
  {
    "ItemCode": "sample string 1",
    "ItemName": "sample string 2",
    "ItemCost": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HorizonSSI.HRIntegration.Models">
  <Items>
    <ItemCode>sample string 1</ItemCode>
    <ItemCost>sample string 3</ItemCost>
    <ItemName>sample string 2</ItemName>
  </Items>
  <Items>
    <ItemCode>sample string 1</ItemCode>
    <ItemCost>sample string 3</ItemCost>
    <ItemName>sample string 2</ItemName>
  </Items>
</ArrayOfItems>