Skip to content

Update Decision Outcome

Request

This allows the user to manually update the decision outcome

Security
bearerToken
Path
guidstringrequired

updates decision outcomes by guid.

Bodyapplication/json
includeInManualReviewboolean

This key is used to enable or restrict the manual review process for pending status.

Example:true
decisionOutcomesArray of objects
curl -i -X PATCH \
  'https://connect.sandbox.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "includeInManualReview": true,
    "decisionOutcomes": [
      {
        "status": 0,
        "label": "string",
        "description": "string"
      }
    ]
  }'

Responses

Bodyapplication/json
messagestring
Example:"Decision outcome updated successfully."
Response
{ "message": "Decision outcome updated successfully." }