Custom Transaction Result Workflows
Overview
Most service providers using the EPC platform are looking to deliver two primary artifacts to a lender upon fulfillment of a service order request - loan specific data, and file attachments. For example, an appraisal integration aims to deliver the final appraised value of the subject property to the loan along with the appraisal report as a PDF file. There are some integrators though, that may want to do more than just importing loan data and file attachments into the loan. An example being pricing engine integrations, which would also want to initiate a special workflow to trigger the interest rate lock for the subject loan, based on the loan program the lender has selected for the borrower.
To initiate such a custom workflow, the EPC platform has introduced a defined set of transaction response results. A result
represents a workflow that needs to be initiated as a result of the successful fulfillment of a service order. It occurs in parallel with standard loan and file attachment ingress, but usually involves more complex orchestrations within Encompass.
Data Contract
A transaction response result
contains the following top-level attributes:
Attribute | Description |
---|---|
$.result.format | The specific format/schema definition version of the custom transaction result |
$.result.action | The workflow action that will be initiated upon acknowledging the result |
$.result.details | Details pertinent to the custom result relevant to the resulting workflow that is initiated |
{
"status": "completed",
...
"result": {
"format": "application/vnd.productpricing-lock-1.0.0.json",
"action": "LOCK",
"details": {
...
}
}
}
EPC's handling and processing of the custom transaction response result
is based on the action
specified in the response. The table below has the list of actions currently supported by EPC.
Action | Category | Description |
---|---|---|
LOCK | PRODUCTPRICING | Enables requesting a rate lock on a loan |
CANCEL | PRODUCTPRICING | Enables requesting cancellation of an existing locked rate |
RELOCK | PRODUCTPRICING | Enables requesting the relocking of an existing locked rate |
EXTEND | PRODUCTPRICING | Enables requesting the extension of an existing locked rate |
LOCK_CONFIRM | PRODUCTPRICING | Enables perform lock request and confirm it in a single transaction response |
DENY | PRODUCTPRICING | Enables perform a deny operation on a requested rate lock |
UPDATE | PRODUCTPRICING | Enables perform an update operation on a rate lock |
UPDATE_CONFIRM | PRODUCTPRICING | Enables perform an update operation on a rate lock and confirm it in a single transaction response |
UPDATE_DISCLOSURE_STATUS | DOC | Enables updating the status of a disclosure tracking log entry |
UPDATE_DISCLOSURE_RECIPIENTS | DOC | Enables updating the details of a disclosure tracking log entry. |
CREATE_FINDINGS | Any category | Enables sending findings to lender |
UPDATE_FINDINGS | Any category | Enables updating findings that have been previously sent to lender |
Required Entitlements
A partner integration is restricted to sending only one result
, and corresponding action
, per transaction response. And for doing so, the integration needs to have the corresponding response result
entitlement registered in its product configuration, along with its standard data and document delivery entitlements.
Registering transaction response
result
entitlementsIf you are interested in leveraging one of the special transaction
result
workflows supported by the EPC platform, reach out to your account manager to get the necessary entitlements registered with your integrations configuration.
Results are independent of request types
Request types are defined by the integration itself. EPC does not attempt to interpret the request
type
for the subject transaction delivering the responseresult
. The custom transactional operations are purely based on theaction
sent as part of the response. If the response does not specify anyaction
as part of the response, EPC processes the response as a standard loan data/file attachment update.
Updated 4 months ago