POST api/logs
Request Information
URI Parameters
None.
Body Parameters
LogViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Timestamp | date |
None. |
|
| Level | string |
None. |
|
| Message | string |
None. |
|
| Exception | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Timestamp": "2025-11-02T22:28:14.3953147-05:00",
"Level": "sample string 2",
"Message": "sample string 3",
"Exception": "sample string 4"
}
application/xml, text/xml
Sample:
<LogViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Matrix.DocumentUploadService.Models"> <Exception>sample string 4</Exception> <Level>sample string 2</Level> <Message>sample string 3</Message> <Timestamp>2025-11-02T22:28:14.3953147-05:00</Timestamp> </LogViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |