New Underwriting Endpoints in New Accounts
See these updates published within our New Accounts API Reference: GET Review Configured Underwriting Services and POST Run Underwriting Service.
What's New?
When new information is collected for a merchant application or a correction is made that requires additional underwriting, Payfacs need the flexibility to run an underwriting service on demand via the API. We introduced two new endpoints to locate the desired underwriting service (id) and to run the underwriting service on a merchant application.
GET Review Configured Underwriting Services
Returns an array of underwriting services configured within a cobrand. Underwriting services that have been deleted are not returned.
Example Response
[
{
"id": 123,
"coBrandId": 456,
"serviceID": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Custom Application Checks",
"sortOrder": 1,
"pendThreshold": 2,
"isDeleted": false
}
]Runs a specific underwriting service for a merchant application within a cobrand. Returns a CorrelationId that may be used for tracking purposes with Infinicept Customer Support.
Example Request Body
{
"enabledUnderwritingCheckId": 123,
"merchantApplicationId": 456
}