GET v2/alerts/{id}

Returns a specific claim alert

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Alert ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Returns a specific claim alert id

Alert
NameDescriptionTypeAdditional information
AlertTypeID

The alert type id.

AlertType

None.

AlertTypeTitle

The name of the alert type

string

None.

TimeStamp

The timestamp of when the alerts were requested

string

None.

ClaimCount

The count of claims in this alert type

integer

None.

Alerts

Contains all alerts for a given alert type

Collection of Alerts

None.

Response Formats

application/json, text/json

Sample:
{
  "AlertTypeID": 1,
  "AlertTypeTitle": "sample string 1",
  "TimeStamp": "sample string 2",
  "ClaimCount": 3,
  "Alerts": [
    {
      "AlertID": 1,
      "CustomerName": "sample string 2",
      "AccountNumber": "sample string 3",
      "PayerID": "sample string 4",
      "ActionDays": 5,
      "Threshold": 6,
      "AlertText": "sample string 7",
      "AlertResult": {
        "ResponseType": 1,
        "Response": "sample string 1"
      },
      "AlertDate": "sample string 8",
      "Completed": true
    },
    {
      "AlertID": 1,
      "CustomerName": "sample string 2",
      "AccountNumber": "sample string 3",
      "PayerID": "sample string 4",
      "ActionDays": 5,
      "Threshold": 6,
      "AlertText": "sample string 7",
      "AlertResult": {
        "ResponseType": 1,
        "Response": "sample string 1"
      },
      "AlertDate": "sample string 8",
      "Completed": true
    }
  ]
}