POST api/GetHeaderHistory

Request Information

URI Parameters

None.

Body Parameters

RequestHeaderHistory
NameDescriptionTypeAdditional information
HeaderID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "HeaderID": 1
}

application/xml, text/xml

Sample:
<RequestHeaderHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APISMS.Controllers.Header">
  <HeaderID>1</HeaderID>
</RequestHeaderHistory>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultHeaderHistory
NameDescriptionTypeAdditional information
ResultCode

string

None.

ResultDesc

string

None.

HeaderHistoryLists

Collection of HeaderHistoryList

None.

Response Formats

application/json, text/json

Sample:
{
  "ResultCode": "sample string 1",
  "ResultDesc": "sample string 2",
  "HeaderHistoryLists": [
    {
      "headerID": 1,
      "HeaderName": "sample string 2",
      "PackageID": 3,
      "PackageName": "sample string 4",
      "HistoryType": "sample string 5",
      "ActionDate": "sample string 6",
      "modifyUser": "sample string 7",
      "HistoryComment": "sample string 8"
    },
    {
      "headerID": 1,
      "HeaderName": "sample string 2",
      "PackageID": 3,
      "PackageName": "sample string 4",
      "HistoryType": "sample string 5",
      "ActionDate": "sample string 6",
      "modifyUser": "sample string 7",
      "HistoryComment": "sample string 8"
    }
  ]
}

application/xml, text/xml

Sample:
<ResultHeaderHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APISMS.Controllers.Header">
  <HeaderHistoryLists>
    <HeaderHistoryList>
      <ActionDate>sample string 6</ActionDate>
      <HeaderName>sample string 2</HeaderName>
      <HistoryComment>sample string 8</HistoryComment>
      <HistoryType>sample string 5</HistoryType>
      <PackageID>3</PackageID>
      <PackageName>sample string 4</PackageName>
      <headerID>1</headerID>
      <modifyUser>sample string 7</modifyUser>
    </HeaderHistoryList>
    <HeaderHistoryList>
      <ActionDate>sample string 6</ActionDate>
      <HeaderName>sample string 2</HeaderName>
      <HistoryComment>sample string 8</HistoryComment>
      <HistoryType>sample string 5</HistoryType>
      <PackageID>3</PackageID>
      <PackageName>sample string 4</PackageName>
      <headerID>1</headerID>
      <modifyUser>sample string 7</modifyUser>
    </HeaderHistoryList>
  </HeaderHistoryLists>
  <ResultCode>sample string 1</ResultCode>
  <ResultDesc>sample string 2</ResultDesc>
</ResultHeaderHistory>