Get Chameleon Notes


Description

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

Authentication

Requires HTTP BASIC authentication.

HTTP Methods

Accepts GET requests.

URI

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

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/notes"
							

Response

{
  "chameleonNoteResponse" : [ {
    "mcNumber" : 512681,
    "dotNumber" : 176545,
    "companyName" : "TRUCKING INC",
    "note" : "Testing notes for mc 512681",
    "author" : "Bryan Dar",
    "date" : "06/07/2013"
  }, {
    "mcNumber" : 765235,
    "dotNumber" : 9887654,
    "companyName" : "FACTOR LLC",
    "note" : "Testing notes for mc 765235",
    "author" : "Bryan Dar",
    "date" : "06/26/2013"
  } ],
  "totalRecords" : 2
}							

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