POST api/app/log
Request Information
URI Parameters
None.
Body Parameters
AppLogEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| LogType | string |
None. |
|
| AppGuid | string |
None. |
|
| Message | string |
None. |
|
| MessageDetail | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LogType": "sample string 1",
"AppGuid": "sample string 2",
"Message": "sample string 3",
"MessageDetail": "sample string 4"
}
application/xml, text/xml
Sample:
<AppLogEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TFF.WebServices.WebApi.Models"> <AppGuid>sample string 2</AppGuid> <LogType>sample string 1</LogType> <Message>sample string 3</Message> <MessageDetail>sample string 4</MessageDetail> </AppLogEntity>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.