Add Loan Note

This requests allows you to add a note to a loan.

General

Notes can be associated with customers and loans. Here, we're adding a note to a loan. Here's what you need to know about adding loan notes:

  • Since we're adding a note to a loan, we'll send this request through the Loans endpoint
  • Notes can be viewed under the Servicing tab of a loan within the LMS UI.
  • There are two types of notes: NOTICE and STANDARD. Notices display immediately when a loan is opened; standard notes display on the Servicing tab.

Database

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

{
    "Notes": {
        "results": [
            {
                "body": "This is a sample note.",
                "categoryId": 27,
                "subject": "Testing",
                "type": "NOTICE",
                "expirationDate": "2022-02-03"
            }
        ]
    }
}

📘

Try It Instructions

Our requests often provide sample payload information so that you can receive a 200 response from simply hitting the Try It button. This request is ready for you—expand the Notes object and hit Try It to send the request.

However, if you would like to try this request with your own tenant account, make sure to change the headers to match your own authentication information.

Language
Authorization
Click Try It! to start a request and see the response here!