GET api/extra/storage/validateDeploymentItem

Request Information

URI Parameters

None.

Body Parameters

StockConfiguration
NameDescriptionTypeAdditional information
Code

string

None.

Quantity

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "quantity": 2.1
}

application/xml, text/xml

Sample:
<StockConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avant.Plenus.WebApi.Models.Business.Extra.Collectors.Storage">
  <Code>sample string 1</Code>
  <Quantity>2.1</Quantity>
</StockConfiguration>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'StockConfiguration'.

Response Information

Resource Description

ProcessDone
NameDescriptionTypeAdditional information
DoneOK

boolean

None.

Finished

boolean

None.

Message

string

None.

Id

string

None.

Response Formats

application/json, text/json

Sample:
{
  "doneOK": true,
  "finished": true,
  "message": "sample string 3",
  "id": "sample string 4"
}

application/xml, text/xml

Sample:
<ProcessDone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avant.Plenus.WebApi.Models.Business.Common">
  <DoneOK>true</DoneOK>
  <Finished>true</Finished>
  <Id>sample string 4</Id>
  <Message>sample string 3</Message>
</ProcessDone>