POST api/AdminService/DeleteWebErrorsByFilter

Documentation for 'DeleteWebErrorsByFilter'.

Request Information

Parameters

NameDescriptionAdditional information
request
Documentation for 'request'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Filter": {
    "PageNumber": 1,
    "PageSize": 2,
    "AppID": 64,
    "ErrorType": "sample string 3",
    "SearchText": "sample string 4",
    "IpAddress": "sample string 5",
    "FromDate": "2026-08-20T10:13:18.8524776+00:00",
    "ToDate": "2026-08-20T10:13:18.8524776+00:00",
    "ExcludeBots": true,
    "SortBy": "sample string 7"
  },
  "ExpectedCount": 1
}

application/xml, text/xml

Sample:
<DeleteFilteredErrorsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartyMusic.BusinessObject.Messages.Logs">
  <ExpectedCount>1</ExpectedCount>
  <Filter>
    <AppID>64</AppID>
    <ErrorType>sample string 3</ErrorType>
    <ExcludeBots>true</ExcludeBots>
    <FromDate>2026-08-20T10:13:18.8524776+00:00</FromDate>
    <IpAddress>sample string 5</IpAddress>
    <PageNumber>1</PageNumber>
    <PageSize>2</PageSize>
    <SearchText>sample string 4</SearchText>
    <SortBy>sample string 7</SortBy>
    <ToDate>2026-08-20T10:13:18.8524776+00:00</ToDate>
  </Filter>
</DeleteFilteredErrorsRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedMediaTypeFormatterTracer' to write type 'DeleteFilteredErrorsRequest'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "Message": {
    "Success": true,
    "DeletedErrors": 2,
    "DeletedDetails": 3,
    "Message": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<ResponseBaseOfErrorActionResult6FUYLq0Q xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartyMusic.BusinessObject.MessageBase">
  <Message xmlns:d2p1="http://schemas.datacontract.org/2004/07/PartyMusic.BusinessObject.Messages.Logs">
    <d2p1:DeletedDetails>3</d2p1:DeletedDetails>
    <d2p1:DeletedErrors>2</d2p1:DeletedErrors>
    <d2p1:Message>sample string 4</d2p1:Message>
    <d2p1:Success>true</d2p1:Success>
  </Message>
  <status>sample string 1</status>
</ResponseBaseOfErrorActionResult6FUYLq0Q>