POST api/WarehouseProductSort/UndoReceivableItems

Request Information

URI Parameters

None.

Body Parameters

Collection of integer

Request Formats

application/json, text/json

Sample:
[
  1,
  2
]

text/html

Sample:
[1,2]

application/xml, text/xml

Sample:
<ArrayOflong xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <long>1</long>
  <long>2</long>
</ArrayOflong>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseOfString
Name Description Type Additional information
Status

Status

None.

Data

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 0,
  "Data": "sample string 1",
  "Message": "sample string 2"
}

text/html

Sample:
{"Status":0,"Data":"sample string 1","Message":"sample string 2"}

application/xml, text/xml

Sample:
<ResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Utility.Api">
  <Data>sample string 1</Data>
  <Message>sample string 2</Message>
  <Status>Success</Status>
</ResponseOfstring>