POST api/DEW/DERJunkQueueDelete

Request Information

URI Parameters

None.

Body Parameters

DERJunkQueueDeleteRequest
NameDescriptionTypeAdditional information
SelectedJunk

Collection of integer

None.

UserName

string

None.

DEWHistoryComment

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SelectedJunk": [
    1,
    1
  ],
  "UserName": "sample string 1",
  "DEWHistoryComment": "sample string 2",
  "SessionNum": 3,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 4",
  "StagesURL": "sample string 5"
}

application/xml, text/xml

Sample:
<DERJunkQueueDeleteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 5</StagesURL>
  <ApplicationCode>sample string 4</ApplicationCode>
  <SessionNum>3</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <DEWHistoryComment>sample string 2</DEWHistoryComment>
  <SelectedJunk xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>1</d2p1:int>
  </SelectedJunk>
  <UserName>sample string 1</UserName>
</DERJunkQueueDeleteRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DERJunkQueueDeleteResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

AllDeleted

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorMessage": "sample string 2",
  "AllDeleted": true
}

application/xml, text/xml

Sample:
<DERJunkQueueDeleteResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <AllDeleted>true</AllDeleted>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Success>true</Success>
</DERJunkQueueDeleteResult>