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

# LMS Customer Full Sync

> Perform a full sync of a customer and all their loans from the company's configured LMS.

## Overview

This endpoint can be used:

* Manually by client engineers for testing
* As a webhook target for automated syncs when the LMS detects updates

The sync includes:

* Customer/contact information
* All loans for the customer
* For each loan: transactions, payments due, payment methods, and documents


## OpenAPI

````yaml WEBHOOK /webhooks/lms/sync/customer-full
openapi: 3.1.0
info:
  title: Finosu API
  description: Finosu API
  license:
    name: MIT
  version: 1.0.0
servers: []
security:
  - apiKeyAuth: []
paths: {}
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````