POST api/admin/{commonLogType}/system_log
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| commonLogType | CommonLogType |
Required |
Body Parameters
CommonLogRecordFilterModel| Name | Description | Type | Additional information |
|---|---|---|---|
| log_type | LogLevelType |
None. |
|
| event_start_date | date |
None. |
|
| event_end_date | date |
None. |
|
| message_query | string |
None. |
|
| exception_query | string |
None. |
|
| username | string |
None. |
|
| environment | string |
None. |
|
| pagination | PaginationInfoModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"log_type": 0,
"event_start_date": "2026-05-01T21:09:09.0376169+00:00",
"event_end_date": "2026-05-01T21:09:09.0376169+00:00",
"message_query": "sample string 1",
"exception_query": "sample string 2",
"username": "sample string 3",
"environment": "sample string 4",
"pagination": {
"page_number": 1,
"page_size": 2,
"page_token": {
"next_partition_key": "sample string 1",
"next_row_key": "sample string 2",
"next_table_name": "sample string 3",
"target_location": 1
}
}
}
text/html
Sample:
{"log_type":0,"event_start_date":"2026-05-01T21:09:09.0376169+00:00","event_end_date":"2026-05-01T21:09:09.0376169+00:00","message_query":"sample string 1","exception_query":"sample string 2","username":"sample string 3","environment":"sample string 4","pagination":{"page_number":1,"page_size":2,"page_token":{"next_partition_key":"sample string 1","next_row_key":"sample string 2","next_table_name":"sample string 3","target_location":1}}}
application/xml, text/xml
Sample:
<CommonLogRecordFilterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
<environment>sample string 4</environment>
<event_end_date>2026-05-01T21:09:09.0376169+00:00</event_end_date>
<event_start_date>2026-05-01T21:09:09.0376169+00:00</event_start_date>
<exception_query>sample string 2</exception_query>
<log_type>ALL</log_type>
<message_query>sample string 1</message_query>
<pagination>
<page_number>1</page_number>
<page_size>2</page_size>
<page_token>
<next_partition_key>sample string 1</next_partition_key>
<next_row_key>sample string 2</next_row_key>
<next_table_name>sample string 3</next_table_name>
<target_location>1</target_location>
</page_token>
</pagination>
<username>sample string 3</username>
</CommonLogRecordFilterModel>
multipart/form-data
Sample:
<CommonLogRecordFilterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><environment>sample string 4</environment><event_end_date>2026-05-01T21:09:09.0376169+00:00</event_end_date><event_start_date>2026-05-01T21:09:09.0376169+00:00</event_start_date><exception_query>sample string 2</exception_query><log_type>ALL</log_type><message_query>sample string 1</message_query><pagination><page_number>1</page_number><page_size>2</page_size><page_token><next_partition_key>sample string 1</next_partition_key><next_row_key>sample string 2</next_row_key><next_table_name>sample string 3</next_table_name><target_location>1</target_location></page_token></pagination><username>sample string 3</username></CommonLogRecordFilterModel>
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. |