nCino Loans API

Endpoints for loans

Operations 7

POST /loans Create a loan #
GET /loans Retrieve all loans #
GET /loans/{loan_id} Retrieve a loan #
PATCH /loans/{loan_id} Update a loan #
DELETE /loans/{loan_id} Delete a loan #
POST /loans/{loan_id}/actions Perform action on a loan #
GET /loans/{loan_id}/ron_eligibility 🚧 Check RON eligibility for a loan (BETA) #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ncino-loans-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ncino-loans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: nCino Mortgage Loans API
  description: API framework built from the ground up to be more a robust, forward thinking solution with tools to support our developer community
  version: '1.0'
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://api.ncinomortgage.com
  description: Production server
security:
- OAuth2: []
tags:
- name: Loans
  description: Endpoints for loans
paths:
  /loans:
    post:
      tags:
      - Loans
      operationId: loans-create
      parameters:
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '201':
          description: Created loan
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceCreated'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '412':
          description: Resource is in an invalid state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSet'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: This endpoint will create a <<glossary:loan>> record.
      summary: Create a loan
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LoanPostBody'
    get:
      tags:
      - Loans
      operationId: loans-index
      parameters:
      - name: borrower_name
        description: Filter loans by borrower name (prefix match against the borrower or co-borrower first or last name).
        required: false
        in: query
        schema:
          type: string
      - name: closing_date_end
        description: Filter to loans with a closing date on or before this date (inclusive).
        required: false
        in: query
        schema:
          type: string
          format: date
      - name: closing_date_start
        description: Filter to loans with a closing date on or after this date (inclusive).
        required: false
        in: query
        schema:
          type: string
          format: date
      - name: in_los
        description: Filter loans by whether they are synced to the LOS.
        required: false
        in: query
        schema:
          type: boolean
      - name: is_active
        description: Filter loans by active status (default true).
        required: false
        in: query
        schema:
          type: boolean
      - name: loan_number
        description: Filter loans by exact loan number.
        required: false
        in: query
        schema:
          type: string
      - name: loan_officer_id
        description: <<glossary:Loan officer>> ID by which to filter loans.
        required: false
        in: query
        schema:
          type: string
          format: uuid
      - name: loan_purpose
        description: Loan purpose search parameter by which to filter loans.
        required: false
        in: query
        schema:
          type: string
      - name: loan_type
        description: Loan type search parameter by which to filter loans.
        required: false
        in: query
        schema:
          type: string
      - name: order
        description: 'Sort by creation date: "asc" (oldest first, default) or "desc" (newest first).'
        required: false
        in: query
        schema:
          type: string
          enum:
          - asc
          - desc
      - name: org_id
        description: Organization (company, region, or branch) ID by which to filter loans.
        required: false
        in: query
        schema:
          type: string
          format: uuid
      - name: user_borrower_id
        description: User borrower ID by which to filter loans.
        required: false
        in: query
        schema:
          type: string
          format: uuid
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/CreatedAfter'
      - $ref: '#/components/parameters/CreatedBefore'
      - $ref: '#/components/parameters/UpdatedAfter'
      - $ref: '#/components/parameters/UpdatedBefore'
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LoanPagination'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: This endpoint will retrieve all <<glossary:loan>> records.
      summary: Retrieve all loans
  /loans/{loan_id}:
    get:
      tags:
      - Loans
      operationId: loans-show
      parameters:
      - name: loan_id
        description: Loan ID.
        required: true
        in: path
        schema:
          type: string
          format: uuid
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Loan.Detail'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: This endpoint will retrieve a <<glossary:loan>> record.
      summary: Retrieve a loan
    patch:
      tags:
      - Loans
      operationId: loans-update
      parameters:
      - name: loan_id
        description: Loan ID.
        required: true
        in: path
        schema:
          type: string
          format: uuid
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '204':
          description: Successfully updated loan
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NoContent'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: This endpoint will update a <<glossary:loan>> record.
      summary: Update a loan
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LoanPatchBody'
    delete:
      tags:
      - Loans
      operationId: loans-destroy
      parameters:
      - name: loan_id
        description: Loan ID.
        required: true
        in: path
        schema:
          type: string
          format: uuid
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '201':
          description: Created <<glossary:asynchronous job>> to delete the loan.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceCreated'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: This endpoint will delete a <<glossary:loan>> record.
      summary: Delete a loan
  /loans/{loan_id}/actions:
    post:
      tags:
      - Loans
      operationId: loans-actions
      parameters:
      - name: loan_id
        description: Loan ID.
        required: true
        in: path
        schema:
          type: string
          format: uuid
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '204':
          description: No content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NoContent'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '412':
          description: Resource is in an invalid state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSet'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: 'This endpoint will perform an action on a <<glossary:loan>> record.


        > 🚧 Under construction

        > **Certain actions on this endpoint are in beta.** Functionality or availability are subject to change and will be communicated.


        > 📌 Available actions

        **DEACTIVATE** - deactivate a loan (sets is_active to false)

        **ACTIVATE** - activate a loan (sets is_active to true)

        **REORDER_BORROWERS** - reorder a loan''s borrowers

        **REASSIGN_LO** - reassign a loan''s loan officer

        🚧 **ASSIGN_TEAM_MEMBER** - assign a team member to a loan

        🚧 **UNASSIGN_TEAM_MEMBER** - unassign a team member from a loan'
      summary: Perform action on a loan
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/DeactivateLoan'
              - $ref: '#/components/schemas/ActivateLoan'
              - $ref: '#/components/schemas/ReorderBorrowers'
              - $ref: '#/components/schemas/ReassignLo'
              - $ref: '#/components/schemas/AssignTeamMember'
              - $ref: '#/components/schemas/UnassignTeamMember'
              discriminator:
                propertyName: action
                mapping:
                  DEACTIVATE: '#/components/schemas/DeactivateLoan'
                  ACTIVATE: '#/components/schemas/ActivateLoan'
                  REORDER_BORROWERS: '#/components/schemas/ReorderBorrowers'
                  REASSIGN_LO: '#/components/schemas/ReassignLo'
                  ASSIGN_TEAM_MEMBER: '#/components/schemas/AssignTeamMember'
                  UNASSIGN_TEAM_MEMBER: '#/components/schemas/UnassignTeamMember'
  /loans/{loan_id}/ron_eligibility:
    get:
      tags:
      - Loans
      operationId: loans-check_ron_eligibility
      parameters:
      - name: loan_id
        description: Loan ID.
        required: true
        in: path
        schema:
          type: string
          format: uuid
      - $ref: '#/components/parameters/ApiVersionHeader'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RonEligibility'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '404':
          description: Loan not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSet'
          headers:
            X-Api-Version:
              $ref: '#/components/headers/ApiVersionResponseHeader'
            X-Api-Supported-Versions:
              $ref: '#/components/headers/ApiSupportedVersionsResponseHeader'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '500':
          $ref: '#/components/responses/InternalServerError'
      description: '> 🚧 Under construction

        > **This endpoint is in beta.** Functionality may change without notice, support is limited, and use in production is not recommended. Your feedback is appreciated.


        This endpoint checks whether a <<glossary:loan>> is eligible for Remote Online Notarization

        (RON), based on the loan''s saved property address and the servicer''s RON configuration.'
      summary: 🚧 Check RON eligibility for a loan (BETA)
components:
  schemas:
    ReassignLo:
      allOf:
      - $ref: '#/components/schemas/LoanAction'
      - type: object
        properties:
          loan_officer_id:
            type: string
            format: uuid
            description: ID of the loan officer to reassign the loan to.
        required:
        - loan_officer_id
        additionalProperties: false
      description: Available properties for reassigning a loan's loan officer.
    ResourceCreated:
      allOf:
      - $ref: '#/components/schemas/AbstractResourceModel'
      description: Resource created model
    ErrorSet:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
      required:
      - errors
      example:
        errors:
        - id: 123abc
          status: 400
          title: Generic title for the error
          detail: Detailed message for the error
          _links:
            resource: contextual resource if applicable
    NoContent:
      type: object
      properties: {}
      additionalProperties: false
    UnassignTeamMember:
      allOf:
      - $ref: '#/components/schemas/LoanAction'
      - type: object
        properties:
          team_member_id:
            type: string
            format: uuid
            description: ID of the team member to unassign from the loan.
        required:
        - team_member_id
        additionalProperties: false
      description: Available properties for unassigning a team member from a loan.
    Loan.Preview:
      allOf:
      - $ref: '#/components/schemas/Loan'
      - type: object
        properties:
          primary_borrower_name:
            type:
            - string
            - 'null'
            description: Primary borrower's name.
          primary_borrower_email:
            type:
            - string
            - 'null'
            description: Primary borrower's email.
      description: Loan model (Preview)
    RonEligibility:
      type: object
      properties:
        is_ron_eligible:
          type: boolean
          description: Whether the loan is eligible for RON based on its property's recording jurisdiction.
        message:
          type:
          - string
          - 'null'
          description: Human-readable explanation when the loan is not eligible or RON is not configured.
        ron_vendor:
          type:
          - string
          - 'null'
          description: The RON vendor evaluated for eligibility.
        jurisdictions:
          type: array
          items:
            $ref: '#/components/schemas/RonJurisdiction'
          description: Recording jurisdictions evaluated for eligibility.
      description: Remote Online Notarization (RON) eligibility result for a <<glossary:loan>>.
      additionalProperties: false
    AbstractCollection:
      allOf:
      - $ref: '#/components/schemas/AbstractModel'
      - type: object
        properties:
          contents:
            type: array
            items:
              type: object
            description: The contents for the collection.
        required:
        - contents
        additionalProperties: false
    LoanInputAddress:
      type: object
      properties:
        street:
          type:
          - string
          - 'null'
          minLength: 1
          maxLength: 255
          description: Loan's property street.
        city:
          type:
          - string
          - 'null'
          minLength: 1
          maxLength: 255
          description: Loan's property city.
        state:
          allOf:
          - $ref: '#/components/schemas/StateCode'
          description: Loan's state.
        zip:
          type:
          - string
          - 'null'
          minLength: 5
          maxLength: 10
          description: Loan's property zip code.
        county:
          type:
          - string
          - 'null'
          minLength: 1
          maxLength: 255
          description: Loan's property county.
        appraised_value:
          type:
          - integer
          - 'null'
          description: Loan's property appraised value.
        purchase_price:
          type:
          - integer
          - 'null'
          description: Loan's property purchase price.
        estimated_value:
          type:
          - integer
          - 'null'
          description: Loan's property estimated value.
        num_of_stories:
          type:
          - integer
          - 'null'
          description: Loan's property number of stories.
        num_of_units:
          type:
          - integer
          - 'null'
          description: Loan's property number of units.
      description: Available properties for a loan's address.
      additionalProperties: false
    AbstractResourceModel:
      allOf:
      - $ref: '#/components/schemas/AbstractModel'
      - type: object
        properties:
          id:
            type: string
            format: uuid
            description: Unique identifier for the record.
        required:
        - id
        additionalProperties: false
    Property:
      allOf:
      - $ref: '#/components/schemas/AbstractModel'
      - type: object
        properties:
          address:
            allOf:
            - $ref: '#/components/schemas/PropertyAddress'
            description: Property's address.
          type:
            type:
            - string
            - 'null'
            description: Property type.
        additionalProperties: false
      description: Property model
    ActivateLoan:
      allOf:
      - $ref: '#/components/schemas/LoanAction'
      description: Available properties for activating a loan.
    LoanApplication:
      allOf:
      - $ref: '#/components/schemas/AbstractResourceModel'
      - type: object
        properties:
          first_name:
            type:
            - string
            - 'null'
            description: Borrower's first name.
          last_name:
            type:
            - string
            - 'null'
            description: Borrower's last name.
          email:
            type:
            - string
            - 'null'
            description: Borrower's email.
          loan_officer_name:
            type:
            - string
            - 'null'
            description: <<glossary:Loan officer>>'s name.
          loan_officer_email:
            type:
            - string
            - 'null'
            description: <<glossary:Loan officer>>'s email.
          created_at:
            type: string
            format: date-time
            description: Timestamp of when the loan application was created.
          updated_at:
            type: string
            format: date-time
            description: Timestamp of when the loan application was last modified.
          is_active:
            type: boolean
            description: Whether the loan application is active.
          is_submitted:
            type: boolean
            description: Whether the loan application has been submitted.
          address:
            type:
            - string
            - 'null'
            description: Borrower's street.
          borrower_external_customer_identifier:
            type:
            - string
            - 'null'
            maxLength: 255
            description: External customer identifier for the borrower, supplied by an enterprise integrator (e.g. FI Customer Number). No format validation is applied.
          city:
            type:
            - string
            - 'null'
            description: Borrower's city.
          coborrower_external_customer_identifier:
            type:
            - string
            - 'null'
            maxLength: 255
            description: External customer identifier for the coborrower, supplied by an enterprise integrator. No format validation is applied.
          dob:
            type:
            - string
            - 'null'
            description: Borrower's date of birth.
          marital_status:
            type:
            - string
            - 'null'
            description: Borrower’s marital status.
          occupancy_type:
            type:
            - string
            - 'null'
            description: Occupancy type for the property.
          property_city:
            type:
            - string
            - 'null'
            description: City where the property is located.
          property_state:
            type:
            - string
            - 'null'
            description: State where the property is located.
          property_street:
            type:
            - string
            - 'null'
            description: Street address of the property.
          property_type:
            type:
            - string
            - 'null'
            description: Type of property.
          property_unit_number:
            type:
            - string
            - 'null'
            description: Unit number of the property.
          property_zip:
            type:
            - string
            - 'null'
            description: Zip code of the property.
          purchase_price:
            type:
            - integer
            - 'null'
            description: Purchase price of the property
          state:
            oneOf:
            - $ref: '#/components/schemas/StateCode'
            - $ref: '#/components/schemas/EmptyString'
            description: U.S. state where borrower resides.
          suffix:
            type:
            - string
            - 'null'
            description: Borrower’s name suffix.
          unit_number:
            type:
            - string
            - 'null'
            description: Unit number of the property.
          zip:
            type:
            - string
            - 'null'
            description: Borrower’s zip code.
      description: Loan application model
    LoanPatchBody:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
          description: Loan type.
        purpose:
          type:
          - string
          - 'null'
          description: Loan purpose.
        amount:
          type:
          - number
          - 'null'
          format: float
          description: Loan amount.
        closing_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the loan plans to close.
        additional_comments:
          type:
          - string
          - 'null'
          description: Additional comments on the loan record.
        amortization_type:
          type:
          - string
          - 'null'
          description: Loan's amortization type.
        amount_base:
          type:
          - number
          - 'null'
          format: float
          description: Loan's base amount.
        amount_total:
          type:
          - number
          - 'null'
          format: float
          description: Loan's total amount.
        approved_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the loan was approved.
        apr:
          type:
          - number
          - 'null'
          format: float
          description: Loan's annual percentage rate.
        debt_to_income_ratio:
          type:
          - number
          - 'null'
          format: float
          description: Loan's debt-to-income ratio.
        doc_signing_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which loan documents are signed.
        down_payment_amount:
          type:
          - number
          - 'null'
          format: float
          description: Loan's down payment dollar amount.
        down_payment_pct:
          type:
          - number
          - 'null'
          format: float
          description: Loan's down payment percentage of loan amount.
        dti_high:
          type:
          - number
          - 'null'
          format: float
          description: Loan's debt-to-income ratio high.
        dti_low:
          type:
          - number
          - 'null'
          format: float
          description: Loan's debt-to-income ratio low.
        first_payment_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the loan's first payment is due.
        first_time_buyer:
          type:
          - boolean
          - 'null'
          description: Whether the loan is for a first-time buyer.
        funding_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the loan intends to be funded.
        intent_to_proceed_at:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the intent to proceed was acknowledged.
        intent_to_proceed_letter_sent_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the intent to proceed letter was sent.
        interest_rate_lock_expires_at:
          type:
          - string
          - 'null'
          format: date
          description: Datetime at which the loan's interest rate lock expires.
        interest_rate:
          type:
          - number
          - 'null'
          format: float
          description: Loan's interest rate.
        lien_position:
          type:
          - string
          - 'null'
          description: Loan's lien position.
        loan_term_months:
          type:
          - integer
          - 'null'
          description: Loan's term in months.
        maturity_date:
          type:
          - string
          - 'null'
          format: date
          description: Date on which the loan reaches maturity.
        occupancy_status:
          type:
          - string
          - 'null'
          description: Loan's occupancy status.
        p_and_i_payment_amount:
          type:
          - number
          - 'null'
          format: float
          description: Loan's principal plus interest payment amount.
        payment_frequency:
          type:
          - string
          - 'null'
          description: Loan's payment frequency.
        preapproval_amount:
          type:
          - number
          - 'null'
          format: float
          description: Loan's preapproval amount.
        preapproval_notes:
          type:
          - string
          - 'null'
          description: Notes on the loan's preapproval.
        processor_email:
          type:
          - string
          - 'null'
          description: Loan processor's email.
        program:
          type:
          - string
          - 'null'
          description: Loan's program.
        rate_expires_at:
          type:
          - string
          - 'null'
          format: date
          description: Datetime at which the loan's rate expires.
        rate_locked:
          type:
          - boolean
          - 'null'
          description: Whether the loan's rate is locked.
        total_monthly_payment_amount:
          type:
          - number
          - 'null'
          format: float
          description: Loan's total monthly payment amount.
        property:
          allOf:
          - $ref: '#/components/schemas/LoanInputAddress'
          description: Loan's property information.
      description: Available properties for updating a loan record
      additionalProperties: false
      minProperties: 1
    StateCode:
      type: string
      enum:
      - AA
      - AE
      - AK
      - AL
      - AP
      - AR
      - AS
      - AZ
      - CA
      - CO
      - CT
      - DC
      - DE
      - FL
      - FM
      - GA
      - GU
      - HI
      - IA
      - ID
      - IL
      - IN
      - KS
      - KY
      - LA
      - MA
      - MD
      - ME
      - MH
      - MI
      - MN
      - MO
      - MP
      - MS
      - MT
      - NC
      - ND
      - NE
      - NH
      - NJ
      - NM
      - NV
      - NY
      - OH
      - OK
      - OR
      - PA
      - PR
      - PW
      - RI
      - SC
      - SD
      - TN
      - TX
      - UT
      - VA
      - VI
      - VT
      - WA
      - WI
      - WV
      - WY
      description: State abbreviated code.
    LoanPagination:
      allOf:
      - $ref: '#/components/schemas/AbstractPagination'
      - type: object
        properties:
          contents:
            type: array
            items:
              $ref: '#/components/schemas/Loan.Preview'
        required:
        - contents
    LoanApplication.Preview:
      allOf:
      - $ref: '#/components/schemas/LoanApplication'
      - type: object
        properties:
          has_coborrower:
            type:
            - boolean
            - 'null'
            description: Whether application has a coborrower.
      description: Loan application model (Preview)
    DeactivateLoan:
      allOf:
      - $ref: '#/components/schemas/LoanAction'
      description: Available properties for deactivating a loan.
    RonTitleAgency:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Title agency identifier from the RON vendor.
        name:
          type:
          - string
          - 'null'
          description: Title agency name.
        alta_id:
          type:
          - string
          - 'null'
          description: Title agency ALTA ID.
        address:
          allOf:
          - $ref: '#/components/schemas/RonTitleAgencyAddress'
          description: Title agency address.
        eligible_underwriters:
          type: array
          items:
            $ref: '#/components/schemas/RonUnderwriter'
          description: Underwriters eligible through this title agency.

# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/ncino/refs/heads/main/openapi/ncino-loans-api-openapi.yml