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

# Get coverage history details by UUIDs

> Retrieves coverage history details for the provided array of UUIDs within a specific facility, most recently created first



## OpenAPI

````yaml /openapi/integration-openapi.json post /api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/coverageHistory/get_by_uuids
openapi: 3.0.0
info:
  title: Monument Integration API
  description: Monument Integration API
  version: '1.0'
  contact: {}
servers:
  - url: https://public-api.prd.monument.io
    description: Production
  - url: https://public-api.stg.monument.io
    description: Staging
security: []
tags:
  - name: Portfolios
    description: List portfolios accessible to the API key
  - name: Facilities
    description: Facility retrieval and coverage-option configuration
  - name: Units
    description: Unit listing and MORA execution
  - name: Unit Groups
    description: Unit group listing, rate management, and unit assignment
  - name: Rental Records
    description: Rental record listing, coverage, fees, autopay, and payment links
  - name: Ledger Entries
    description: Ledger entry retrieval at facility and rental-record level
  - name: Leads
    description: Lead listing and lease sending
  - name: Tasks
    description: Task creation and listing for integrations
  - name: Tenants
    description: Tenant listing and person updates
  - name: People
    description: Person listing
  - name: Notes
    description: Note listing and creation for tenants and leads
  - name: Auctions
    description: Auction listing
  - name: Coverage
    description: Portfolio-level coverage CRUD and coverage history
  - name: Summary
    description: Portfolio-level aggregate summaries (insurance enrollment/occupancy)
  - name: Promotions
    description: Promotion listing
  - name: ECRI
    description: Effective Current Rent Increase scheduling
  - name: Item Types
    description: Item type listing per facility
  - name: Delinquencies
    description: Delinquency listing per facility
  - name: Physical Locks
    description: Physical lock assignment and unassignment
  - name: Lead Source Options
    description: Lead source option listing
  - name: Webhooks
    description: Webhook subscription management
  - name: Payments
    description: Payment profile creation
paths:
  /api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/coverageHistory/get_by_uuids:
    post:
      tags:
        - Coverage
      summary: Get coverage history details by UUIDs
      description: >-
        Retrieves coverage history details for the provided array of UUIDs
        within a specific facility, most recently created first
      operationId: PrivateApiCoverageHistoryController_getCoverageHistoryByUuids
      parameters:
        - name: facilityUuid
          required: true
          in: path
          schema:
            type: string
        - in: path
          required: true
          name: portfolio
          schema:
            example: abc_selfstorage
        - in: header
          required: true
          name: x-api-key
          schema:
            example: monument-2230012-2312321
            description: >-
              Api key required to authenticate your request. Please reach out to
              monument for a key.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetCoverageHistoryByUuidsRequestDto'
      responses:
        '200':
          description: Coverage history details retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CoverageHistoryDetailResponseDto'
components:
  schemas:
    GetCoverageHistoryByUuidsRequestDto:
      type: object
      properties:
        coverageHistoryUuids:
          description: Array of coverage history UUIDs to retrieve
          example:
            - 3fa85f64-5717-4562-b3fc-2c963f66afa6
            - 3fa85f64-5717-4562-b3fc-2c963f66afa7
          type: array
          items:
            type: string
            format: uuid
      required:
        - coverageHistoryUuids
    CoverageHistoryDetailResponseDto:
      type: object
      properties:
        monumentCoverageEnrollmentUuid:
          type: string
          description: UUID of the monument coverage enrollment
          format: uuid
          example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
        unitRentalRecordUuid:
          type: string
          description: UUID of the unit rental record
          format: uuid
          example: 2a3b4c5d-6e7f-8a9b-0c1d-2e3f4a5b6c7d
        coverageStartDate:
          type: string
          description: Coverage start date
          format: date-time
          example: '2024-01-15T00:00:00.000Z'
        coverageEndDate:
          type: string
          nullable: true
          description: Coverage end date
          format: date-time
          example: '2024-12-31T23:59:59.999Z'
        unitNumber:
          type: string
          description: Unit number
          example: A101
        partnerCoverageId:
          type: string
          nullable: true
          description: Partner coverage ID
          example: COVERAGE_PARTNER_123
        coverageUuid:
          type: string
          description: >-
            UUID of the coverage. For private coverage, this will be the private
            coverage UUID: 11111111-1111-1111-1111-111111111111
          format: uuid
          example: 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
        coveragePremium:
          type: number
          description: Coverage premium amount in pennies
          example: 2500
        coverageAmount:
          type: number
          description: Coverage amount in pennies
          example: 500000
        createdAt:
          type: string
          description: Creation timestamp
          format: date-time
          example: '2024-01-15T10:30:00.000Z'
        updatedAt:
          type: string
          description: Last update timestamp
          format: date-time
          example: '2024-01-20T15:45:00.000Z'
        isPrivate:
          type: boolean
          description: Whether this is a private (self-managed) coverage enrollment
          example: false
        status:
          type: string
          description: Enrollment status derived from endDate
          enum:
            - ACTIVE
            - INACTIVE
          example: ACTIVE
        coverageProvider:
          type: string
          nullable: true
          description: Coverage provider. Null for private coverage.
          enum:
            - SAFE_LEASE
            - SECURE_LEASE
            - STORAGE_SHIELD
            - RV_PARK_N_PROTECT
            - OTHER
          example: SAFE_LEASE
        facilityUuid:
          type: string
          description: UUID of the facility
          format: uuid
        unitUuid:
          type: string
          description: UUID of the unit
          format: uuid
        facilityDescription:
          type: string
          description: Denormalized facility name (max 25 chars)
          example: Main Street Storage
        primaryContact:
          nullable: true
          description: Primary contact for the account linked to this enrollment
          allOf:
            - $ref: '#/components/schemas/ContactDto'
        alternateContacts:
          description: Alternate contacts for the account. Contains at most one entry.
          type: array
          items:
            $ref: '#/components/schemas/ContactDto'
        tenantPrivatePolicy:
          nullable: true
          description: >-
            Current private-policy submission for this enrollment. Populated
            only for private (self-managed) coverage with a current submission;
            null otherwise.
          allOf:
            - $ref: '#/components/schemas/TenantPrivatePolicyDto'
      required:
        - monumentCoverageEnrollmentUuid
        - unitRentalRecordUuid
        - coverageStartDate
        - unitNumber
        - coverageUuid
        - coveragePremium
        - coverageAmount
        - createdAt
        - updatedAt
        - isPrivate
        - status
        - coverageProvider
        - facilityUuid
        - unitUuid
        - facilityDescription
        - primaryContact
        - alternateContacts
        - tenantPrivatePolicy
    ContactDto:
      type: object
      properties:
        firstName:
          type: string
          nullable: true
          example: Jane
          description: Contact's first name
        lastName:
          type: string
          nullable: true
          example: Doe
          description: Contact's last name
        address1:
          type: string
          nullable: true
          example: 123 Main St
          description: Contact's address line 1
        address2:
          type: string
          nullable: true
          example: Apt 4B
          description: Contact's address line 2
        city:
          type: string
          nullable: true
          example: Anytown
          description: Contact's city
        state:
          type: string
          nullable: true
          maxLength: 2
          example: CA
          description: Contact's state
        zipcode:
          type: string
          nullable: true
          maxLength: 10
          example: '90210'
          description: Contact's zip code
        email:
          type: string
          nullable: true
          example: jane.doe@example.com
          description: Contact's email address
        phone:
          type: string
          nullable: true
          example: '+15551234567'
          description: Contact's phone number
        optedIntoSms:
          type: boolean
          nullable: true
          example: true
          description: Whether the contact has opted into SMS
        dateOfBirth:
          type: string
          nullable: true
          example: '2024-01-01'
          description: Date of birth
    TenantPrivatePolicyDto:
      type: object
      properties:
        providerName:
          type: string
          description: Name of the private insurance provider
          example: State Farm
        policyHolderName:
          type: string
          description: Name of the policy holder
          example: Jane Doe
        policyNumber:
          type: string
          description: Policy number for the private coverage
          example: POL-123456
        expirationDate:
          type: string
          description: Policy expiration date (ISO date)
          format: date
          example: '2027-04-15'
        submittedBy:
          $ref: '#/components/schemas/TenantPolicySubmittedBy'
          example: TENANT
        dateCreated:
          type: string
          description: When the submission was created
          format: date-time
          example: '2026-04-01T12:00:00.000Z'
      required:
        - providerName
        - policyHolderName
        - policyNumber
        - expirationDate
        - submittedBy
        - dateCreated
    TenantPolicySubmittedBy:
      type: string
      description: Who submitted the policy
      enum:
        - TENANT
        - OPERATOR

````