GET AlertSearchAttempt/{idProfile}

Gets the Alert Search Attempt by profile identifier.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idProfile

The identifier profile.

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StormApi.Models.Alerts.AlertSearchAttemptRequest
NameDescriptionTypeAdditional information
AlertSearchAttemptKey

integer

None.

AlertSearchKey

integer

None.

CustomerReportKey

integer

None.

AlertStatus

string

None.

WasReportTriggered

boolean

None.

SearchResult

string

None.

IsRead

boolean

None.

AttemptData

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AlertSearchAttemptKey": 1,
    "AlertSearchKey": 2,
    "CustomerReportKey": 1,
    "AlertStatus": "sample string 3",
    "WasReportTriggered": true,
    "SearchResult": "sample string 5",
    "IsRead": true,
    "AttemptData": "sample string 7"
  },
  {
    "AlertSearchAttemptKey": 1,
    "AlertSearchKey": 2,
    "CustomerReportKey": 1,
    "AlertStatus": "sample string 3",
    "WasReportTriggered": true,
    "SearchResult": "sample string 5",
    "IsRead": true,
    "AttemptData": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAlertSearchAttemptRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AlertSearchAttemptRequest>
    <AlertSearchAttemptKey>1</AlertSearchAttemptKey>
    <AlertSearchKey>2</AlertSearchKey>
    <CustomerReportKey>1</CustomerReportKey>
    <AlertStatus>sample string 3</AlertStatus>
    <WasReportTriggered>true</WasReportTriggered>
    <SearchResult>sample string 5</SearchResult>
    <IsRead>true</IsRead>
    <AttemptData>sample string 7</AttemptData>
  </AlertSearchAttemptRequest>
  <AlertSearchAttemptRequest>
    <AlertSearchAttemptKey>1</AlertSearchAttemptKey>
    <AlertSearchKey>2</AlertSearchKey>
    <CustomerReportKey>1</CustomerReportKey>
    <AlertStatus>sample string 3</AlertStatus>
    <WasReportTriggered>true</WasReportTriggered>
    <SearchResult>sample string 5</SearchResult>
    <IsRead>true</IsRead>
    <AttemptData>sample string 7</AttemptData>
  </AlertSearchAttemptRequest>
</ArrayOfAlertSearchAttemptRequest>