Get Chameleon Watchlist


Description

This method is used to return the list of McNumber from Chameleon Watchlist for the given creditor and their data.

Authentication

Requires HTTP BASIC authentication.

HTTP Methods

Accepts GET requests.

URI

/api/2.0/creditors/{creditor}/chameleon/watchlist

Path Variables

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

Parameters

No HTTP parameters.

Curl Example

Request

curl -u apiuser:test "https://www.factorsnetwork.com/api/2.0/creditors/e6aaa036-2121-d11d-dd33-869ffac113be/chameleon/watchlist"
							

Response

{
  "chameleonWatchListResponse" : [ {
    "mcNumber" : 512681,
    "dotNumber" : 988656,
    "companyName" : "TRUCKING INC",
    "alerts" : 0,
    "matches" : 362,
    "notes" : 1,
    "webLastUpdated" : "06/07/2013"
  }, {
    "mcNumber" : 765235,
    "dotNumber" : 9887767,
    "companyName" : "FACTOR LLC",
    "alerts" : 0,
    "matches" : 433,
    "notes" : 1,
    "webLastUpdated" : "04/09/2014"
  } ],
  "totalRecords" : 2
}							

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