Edit Action & Results

This request allows you to edit the Actions and Results on a loan.

   Click here to learn more about this request

Actions and Results are used by lenders to track the effectiveness of servicing operations and standardize practices for their personnel:

  • This request edits an action, result, and note associated with a loan.
  • There are three different IDs needed for this request: action and result note ID, loan ID, and action and result selection ID. Of those three, the last one is the most difficult to acquire. Here's a guide that explains how to find the ID.
  • This request does not update the loan's follow-up date. When you add or update an action and result within the UI, the system actually sends two requests: one for the action and result and one to update the follow-up date. This page—or any REST client—won't send two requests at the same time, so it's necessary to send a separate request to update the follow-up date by editing the loan settings.

Database

For information on actions database tables, see the following articles:

{
    "ActionResultSelectionItems": {
        "results": [
            {
                "__id": 65,
                "__destroy": true
            },
            {
                "Action": {
                    "__id": 10
                },
                "Result": {
                    "__id": 5
                }
            }
        ]
    },
    "loanId": 9114,
    "note": "<p>This note was edited via the API! &lt;3</p>",
    "__update": true,
    "__id": 74
}
Language
Authorization
Click Try It! to start a request and see the response here!