POST api/clientlogs

Request Information

URI Parameters

None.

Body Parameters

Collection of ClientLogEntry
NameDescriptionTypeAdditional information
Timestamp

string

None.

Level

string

None.

Message

string

None.

SessionId

string

None.

Step

string

None.

Id

string

None.

HttpStatus

integer

None.

ErrorType

string

None.

Url

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Timestamp": "sample string 1",
    "Level": "sample string 2",
    "Message": "sample string 3",
    "SessionId": "sample string 4",
    "Step": "sample string 5",
    "Id": "sample string 6",
    "HttpStatus": 1,
    "ErrorType": "sample string 7",
    "Url": "sample string 8"
  },
  {
    "Timestamp": "sample string 1",
    "Level": "sample string 2",
    "Message": "sample string 3",
    "SessionId": "sample string 4",
    "Step": "sample string 5",
    "Id": "sample string 6",
    "HttpStatus": 1,
    "ErrorType": "sample string 7",
    "Url": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfClientLogEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AltaiStandard.Web.ClientIntegrationService.Models">
  <ClientLogEntry>
    <ErrorType>sample string 7</ErrorType>
    <HttpStatus>1</HttpStatus>
    <Id>sample string 6</Id>
    <Level>sample string 2</Level>
    <Message>sample string 3</Message>
    <SessionId>sample string 4</SessionId>
    <Step>sample string 5</Step>
    <Timestamp>sample string 1</Timestamp>
    <Url>sample string 8</Url>
  </ClientLogEntry>
  <ClientLogEntry>
    <ErrorType>sample string 7</ErrorType>
    <HttpStatus>1</HttpStatus>
    <Id>sample string 6</Id>
    <Level>sample string 2</Level>
    <Message>sample string 3</Message>
    <SessionId>sample string 4</SessionId>
    <Step>sample string 5</Step>
    <Timestamp>sample string 1</Timestamp>
    <Url>sample string 8</Url>
  </ClientLogEntry>
</ArrayOfClientLogEntry>

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 'List`1'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.