POST api/General/Home/AddErrorLogs
Request Information
URI Parameters
None.
Body Parameters
ErrorLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorDateTime | string |
None. |
|
| URL | string |
None. |
|
| Source | string |
None. |
|
| Type | string |
None. |
|
| Message | string |
None. |
|
| IPAddress | string |
None. |
|
| User | string |
None. |
|
| IsSeen | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ErrorDateTime": "sample string 1",
"URL": "sample string 2",
"Source": "sample string 3",
"Type": "sample string 4",
"Message": "sample string 5",
"IPAddress": "sample string 6",
"User": "sample string 7",
"IsSeen": true
}
application/xml, text/xml
Sample:
<dalErrorLog.ErrorLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.DataAccess"> <ErrorDateTime>sample string 1</ErrorDateTime> <IPAddress>sample string 6</IPAddress> <IsSeen>true</IsSeen> <Message>sample string 5</Message> <Source>sample string 3</Source> <Type>sample string 4</Type> <URL>sample string 2</URL> <User>sample string 7</User> </dalErrorLog.ErrorLogModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>