Get Carrier Monitoring Alerts


Description

This method is used to get Carrier Monitoring alerts.

Authentication

Requires HTTP BASIC authentication.

HTTP Methods

Accepts GET requests.

URI

/api/2.0/creditors/{creditor}/carrier_monitoring/alerts

Path Variables

Name Required/Optional Description Validation
creditor required The UUID of the creditor in the system Creditor UUID should exist in the system

HTTP Parameters

No HTTP parameters.

Curl Example

Request

curl -k -u apiuser:test -X GET "https://www.factorsnetwork.com/api/2.0/creditors/5ed02be3-7284-41ec-89da-09d665ad43e9/carrier_monitoring/alerts"
						

Response

{
  "carrierAlertsResponse" : [{
    "type" : "INSURANCE_STATUS_CHANGE",
    "alertDate" : "09/02/2014",
    "message" : "Insurance on file for MC#10928 of type BIPD was adjusted from $536,000 to $0"
  }, {
    "type" : "ADDRESS_CHANGE",
    "alertDate" : "09/02/2014",
    "message" : "Business address for MC#17262 has changed from 2536 N MAIN # 3 9,RIVER VIEW OR 32222 to 54647 MAIN ST NE # 39,RIVER VIEW  OR 2333"
  } ],
  "totalRecords" : 2
}

Note: Responses will not be pretty printed when using the API, but have been formatted here for documentation purposes.