POST api/User/PostMobileError

Request Information

URI Parameters

None.

Body Parameters

MobileError
NameDescriptionTypeAdditional information
Id

integer

None.

Message

string

None.

IsComponentError

boolean

None.

ComponentStack

string

None.

Line

integer

None.

Column

integer

None.

UserName

string

None.

DbName

string

None.

IsFatal

boolean

None.

Date

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "message": "sample string 2",
  "isComponentError": true,
  "componentStack": "sample string 4",
  "line": 5,
  "column": 6,
  "userName": "sample string 7",
  "dbName": "sample string 8",
  "isFatal": true,
  "date": "2025-12-10T17:39:40.3025957+03:00"
}

application/xml, text/xml

Sample:
<MobileError xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VolisServer.Domain.Entities">
  <Column>6</Column>
  <ComponentStack>sample string 4</ComponentStack>
  <Date>2025-12-10T17:39:40.3025957+03:00</Date>
  <DbName>sample string 8</DbName>
  <Id>1</Id>
  <IsComponentError>true</IsComponentError>
  <IsFatal>true</IsFatal>
  <Line>5</Line>
  <Message>sample string 2</Message>
  <UserName>sample string 7</UserName>
</MobileError>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.