POST api/DEW/IRUserQueueInsert

Request Information

URI Parameters

None.

Body Parameters

IRUserQueueInsertRequest
NameDescriptionTypeAdditional information
QueueName

string

None.

UserName

string

None.

SecondaryFlag

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "QueueName": "sample string 1",
  "UserName": "sample string 2",
  "SecondaryFlag": "sample string 3",
  "SessionNum": 4,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 5",
  "StagesURL": "sample string 6"
}

application/xml, text/xml

Sample:
<IRUserQueueInsertRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 6</StagesURL>
  <ApplicationCode>sample string 5</ApplicationCode>
  <SessionNum>4</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <QueueName>sample string 1</QueueName>
  <SecondaryFlag>sample string 3</SecondaryFlag>
  <UserName>sample string 2</UserName>
</IRUserQueueInsertRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IRUserQueueInsertResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

IRQI

integer

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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