Endpoint for a user authentication and token management.
- API Documentation
- Return Decision Outcome
Check and Decide (1.0.1)
Endpoints to access pre-configured decision trees to automate credit decisions. Decision Engine can help you save time and money across your company by automating time consuming processes which drain your company's resources. This can free you and your staff to spend more time to work on achieving your business goals.
A full audit trail of previous decisions is maintained for user access and decisions in a pending state can be manually approved or declined.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}
- Production server
https://connect.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "correlationId": "23921650-c073-11ea-860f-06bc8182190e", "includeInManualReview": true, "decisionOutcomes": { "items": [ … ] } }
This key is used to enable or restrict the manual review process for pending status.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}
- Production server
https://connect.creditsafe.com/v1/decisionEngine/decisionOutcome/{guid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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"
}
]
}'{ "message": "Decision outcome updated successfully." }