POST Messages

Request Information

URI Parameters

None.

Body Parameters

MessageToSend
NameDescriptionTypeAdditional information
HandledDate

date

None.

Text

string

Required

String length: inclusive between 0 and 2000

Sender

string

Required

String length: inclusive between 0 and 16

Receivers

Collection of string

None.

SessionData

string

String length: inclusive between 0 and 200

Request Formats

application/json, text/json

Sample:
{
  "HandledDate": "2024-03-29T09:04:42.447+01:00",
  "Text": "sample string 1",
  "Sender": "sample string 2",
  "Receivers": [
    "sample string 1",
    "sample string 2"
  ],
  "SessionData": "sample string 3"
}

application/xml, text/xml

Sample:
<Message xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Text>sample string 1</Text>
  <Sender>sample string 2</Sender>
  <Receivers>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Receivers>
  <SessionData>sample string 3</SessionData>
  <HandledDate>2024-03-29T09:04:42.4478701+01:00</HandledDate>
</Message>

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string>sample string 1</string>