Update Credit Status Override


Description

This method will update credit status override in the system.

Authentication

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

HTTP Methods

Accepts POST 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.

Parameters

Name Required/Optional Description Validation
debtor required The UUID of the debtor in the system Debtor UUID should exist in the system.
status required Debtor's status Valid values are APPROVED, DENIED, REVIEW_REQUIRED or NONE. If NONE is selected then the debtor will be removed from credit status override.
overRideBranch optional Override Branch status too Valid values are YES OR NO. Default Value is NO.

Curl Example

Request

curl -k -u apiuser:test -X POST "https://www.factorsnetwork.com/api/creditors/e6aaa036-2121-d11d-dd33-869ffac113be/credit_status_override" -d "debtor=4ed02be3-2121-d11d-dd33-869ffac113be&status=DENIED&overRideBranch=YES"
						

Response

{
  "creditorDebtorOverrideResponse" : {
    "debtor" : "4ed02be3-2121-d11d-dd33-869ffac113be",
    "companyName" : "BROKERAGE INC",
    "mcNumber" : 347803,
    "dotNumber" : 7897665,
    "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.