GET api/ExamAlert?securityKey={securityKey}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
securityKey

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ExamAlert
NameDescriptionTypeAdditional information
SecurityKey

string

None.

AlertId

integer

None.

Alert

string

None.

CreateTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SecurityKey": "sample string 1",
    "AlertId": 2,
    "Alert": "sample string 3",
    "CreateTime": "2025-12-11T10:28:03.2895619-08:00"
  },
  {
    "SecurityKey": "sample string 1",
    "AlertId": 2,
    "Alert": "sample string 3",
    "CreateTime": "2025-12-11T10:28:03.2895619-08:00"
  }
]

text/html

Sample:
[{"SecurityKey":"sample string 1","AlertId":2,"Alert":"sample string 3","CreateTime":"2025-12-11T10:28:03.2895619-08:00"},{"SecurityKey":"sample string 1","AlertId":2,"Alert":"sample string 3","CreateTime":"2025-12-11T10:28:03.2895619-08:00"}]

application/xml, text/xml

Sample:
<ArrayOfExamAlert xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model">
  <ExamAlert>
    <Alert>sample string 3</Alert>
    <AlertId>2</AlertId>
    <CreateTime>2025-12-11T10:28:03.2895619-08:00</CreateTime>
    <SecurityKey>sample string 1</SecurityKey>
  </ExamAlert>
  <ExamAlert>
    <Alert>sample string 3</Alert>
    <AlertId>2</AlertId>
    <CreateTime>2025-12-11T10:28:03.2895619-08:00</CreateTime>
    <SecurityKey>sample string 1</SecurityKey>
  </ExamAlert>
</ArrayOfExamAlert>