Get Credit Status Override


Description

This method will return credit status override based on creditor in the system.

Authentication

Requires HTTP BASIC authentication.The authenticating user must be associated with the creditor.

HTTP Methods

Accepts GET requests.

URI

/api/creditors/{uuid}/credit_status_override

Path Variables

Name Required/Optional Description Validation
uuid 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/creditors/e6aaa036-2121-d11d-dd33-869ffac113be/credit_status_override"
						

Response

{
  "creditorDebtorOverrideListResponse" : [ {
    "debtor" : "11121111-cb95-4b28-b232-73469a3dbd88",
    "companyName" : "LOGISTICS, LLC",
    "mcNumber" : 252041,
    "dotNumber" : 9776544,
    "creditor" : "22222222-2121-d11d-dd33-869ffac113be",
    "status" : "DENIED"
  }, {
    "debtor" : "33333333-0812-4231-be9d-53dd6c372729",
    "companyName" : "TRANSPORTATION, INC",
    "mcNumber" : null,
    "dotNumber" : null,
    "creditor" : "e6aaa036-2121-d11d-dd33-869ffac113be",
    "status" : "DENIED"
  }, {
    "debtor" : "44444444-9fd9-47b2-a655-21ca39dc3973",
    "companyName" : "TRANSPORT, INC",
    "mcNumber" : 472948,
    "dotNumber" : 987654,
    "creditor" : "e6aaa036-2121-d11d-dd33-869ffac113be",
    "status" : "DENIED"
  } ]
}

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