POST api/cmis/log/message

Request Information

URI Parameters

None.

Body Parameters

RRLogMessage
NameDescriptionTypeAdditional information
client

string

None.

level

RRLogLevel

None.

line

string

None.

message

string

None.

method

string

None.

source

string

None.

time

date

None.

Request Formats

application/json, text/json

Sample:
{
  "client": "sample string 1",
  "level": 0,
  "line": "sample string 2",
  "message": "sample string 3",
  "method": "sample string 4",
  "source": "sample string 5",
  "time": "2025-04-28T10:53:38.4061065+00:00"
}

application/xml, text/xml

Sample:
<RRLogMessage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Client>sample string 1</Client>
  <Level>Debug</Level>
  <Line>sample string 2</Line>
  <Message>sample string 3</Message>
  <Method>sample string 4</Method>
  <Source>sample string 5</Source>
  <Time>2025-04-28T10:53:38.4061065+00:00</Time>
</RRLogMessage>

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 'RRLogMessage'.

Response Information

Resource Description

RRLogMessageResponse
NameDescriptionTypeAdditional information
Id

integer

None.

server

string

None.

status

HttpStatusCode

None.

time

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "server": "sample string 2",
  "status": 100,
  "time": "2025-04-28T10:53:38.4373532+00:00"
}

application/xml, text/xml

Sample:
<RRLogMessageResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Id>1</Id>
  <Server>sample string 2</Server>
  <Status>Continue</Status>
  <Time>2025-04-28T10:53:38.4373532+00:00</Time>
</RRLogMessageResponse>