POST api/DEW/UserMessageInsert

Request Information

URI Parameters

None.

Body Parameters

UserMessageInsertRequest
NameDescriptionTypeAdditional information
DERNum

integer

None.

MessageFrom

string

None.

MessageType

string

None.

Message

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DERNum": 1,
  "MessageFrom": "sample string 1",
  "MessageType": "sample string 2",
  "Message": "sample string 3",
  "SessionNum": 4,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 5",
  "StagesURL": "sample string 6"
}

application/xml, text/xml

Sample:
<UserMessageInsertRequest 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>
  <DERNum>1</DERNum>
  <Message>sample string 3</Message>
  <MessageFrom>sample string 1</MessageFrom>
  <MessageType>sample string 2</MessageType>
</UserMessageInsertRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserMessageInsertResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

UserMessageInsert

integer

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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