> ## Documentation Index
> Fetch the complete documentation index at: https://rollout.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Export Loan MISMO

> GET /loans/{id}/export-mismo

`GET /loans/{id}/export-mismo`

Base URL: `https://los.universal.rollout.com/api`

Exports a single loan as a MISMO 3.4 XML document when the connected LOS supports native MISMO export. Encompass credentials support this endpoint through the Encompass transformer API.

## Parameters

| Name     | In    | Type                            | Required |
| -------- | ----- | ------------------------------- | -------- |
| `id`     | path  | string                          | Yes      |
| `format` | query | `ULADDU` \| `ULADLPA` \| `ILAD` | Yes      |

## Responses

| Status | Description            |
| ------ | ---------------------- |
| `200`  | MISMO 3.4 XML document |
| `400`  | Bad Request            |
| `404`  | Not Found              |

## OpenAPI Source

`/openapi/los.json GET /loans/{id}/export-mismo`


## OpenAPI

````yaml /openapi/los.json GET /loans/{id}/export-mismo
openapi: 3.0.3
info:
  title: Universal LOS API Documentation
  description: Development documentation
  version: '1.0'
servers:
  - url: https://los.universal.rollout.com/api
security: []
paths:
  /loans/{id}/export-mismo:
    get:
      tags:
        - Loans
      summary: Export Loan MISMO
      description: >-
        Exports a single loan as a MISMO 3.4 XML document. Encompass credentials
        support ULADDU, ULADLPA, and ILAD export formats.
      operationId: export_loan_mismo
      parameters:
        - schema:
            type: string
          in: path
          name: id
          required: true
        - schema:
            type: string
            enum:
              - ULADDU
              - ULADLPA
              - ILAD
          in: query
          name: format
          required: true
      responses:
        '200':
          content:
            application/xml:
              schema:
                type: string
          description: MISMO 3.4 XML document
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorMessage:
                    type: string
                required:
                  - errorMessage
            multipart/form-data:
              schema:
                type: object
                properties:
                  errorMessage:
                    type: string
                required:
                  - errorMessage
            text/plain:
              schema:
                type: object
                properties:
                  errorMessage:
                    type: string
                required:
                  - errorMessage
          description: Bad Request
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorMessage:
                    type: string
                required:
                  - errorMessage
            multipart/form-data:
              schema:
                type: object
                properties:
                  errorMessage:
                    type: string
                required:
                  - errorMessage
            text/plain:
              schema:
                type: object
                properties:
                  errorMessage:
                    type: string
                required:
                  - errorMessage
          description: Not Found
      security:
        - jwt: []
          credential_id: []
components: {}

````