POST api/admin/logs
Request Information
URI Parameters
None.
Body Parameters
CreateLogRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Level | string |
None. |
|
| Source | string |
None. |
|
| ErrorType | string |
None. |
|
| Message | string |
None. |
|
| StackTrace | string |
None. |
|
| UserInfo | string |
None. |
|
| DeviceInfo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"level": "sample string 1",
"source": "sample string 2",
"errorType": "sample string 3",
"message": "sample string 4",
"stackTrace": "sample string 5",
"userInfo": "sample string 6",
"deviceInfo": "sample string 7"
}
application/xml, text/xml
Sample:
<CreateLogRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos"> <DeviceInfo>sample string 7</DeviceInfo> <ErrorType>sample string 3</ErrorType> <Level>sample string 1</Level> <Message>sample string 4</Message> <Source>sample string 2</Source> <StackTrace>sample string 5</StackTrace> <UserInfo>sample string 6</UserInfo> </CreateLogRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.