Connect API Catalog///
- API Documentation
Creditsafe Connect
- Update Decision Outcome
Return Decision Outcome
Update Decision Outcome
This allows the user to manually update the decision outcome
Security
bearerToken
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}
- Production serverhttps://connect.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}
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"
}
]
}'Response
{ "message": "Decision outcome updated successfully." }