> ## 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 size-and-type unit group details by UUIDs

> Returns details for specified size-and-type unit groups associated with a facility



## OpenAPI

````yaml /openapi/integration-openapi.json post /api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/unitGroups/sizeAndType/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}/unitGroups/sizeAndType/get_by_uuids:
    post:
      tags:
        - Unit Groups
      summary: Get size-and-type unit group details by UUIDs
      description: >-
        Returns details for specified size-and-type unit groups associated with
        a facility
      operationId: PrivateApiUnitGroupsController_getSizeAndTypeUnitGroupsByUuids
      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/GetSizeAndTypeUnitGroupsByUuidsRequestDto'
      responses:
        '200':
          description: Size-and-type unit group details retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SizeAndTypeUnitGroupResponseDto'
        '400':
          description: Bad Request (e.g., Too many uuids, invalid input)
components:
  schemas:
    GetSizeAndTypeUnitGroupsByUuidsRequestDto:
      type: object
      properties:
        sizeAndTypeUnitGroupUuids:
          example:
            - 3fa85f64-5717-4562-b3fc-2c963f66afa6
            - 3fa85f64-5717-4562-b3fc-2c963f66afa7
          description: Array of sizeAndTypeUnitGroupUuids to retrieve details for
          type: array
          items:
            type: string
            format: uuid
      required:
        - sizeAndTypeUnitGroupUuids
    SizeAndTypeUnitGroupResponseDto:
      type: object
      properties:
        sizeAndTypeUnitGroupUuid:
          type: string
          format: uuid
          example: 22d0bbc0-17f4-11f1-8e7c-67a9b4f331ad
          description: Size-and-type unit group UUID
        length:
          type: number
          nullable: true
          example: 10.5
          description: Unit depth (length)
        width:
          type: number
          nullable: true
          example: 10.5
          description: Unit width
        height:
          type: number
          nullable: true
          example: 10.5
          description: Unit height
        area:
          type: string
          nullable: true
          example: 100 sq. ft.
          description: Calculated area (width × length)
        unitType:
          type: string
          nullable: true
          example: Covered Parking
          description: Unit type description
        entityAttributeOrganizationUuid:
          type: string
          nullable: true
          format: uuid
          example: 6fe75622-7de5-11f0-9798-e13a04f5cbb4
          description: Entity attribute organization UUID (unit type)
        unitGroups:
          description: Unit groups belonging to this size-and-type group
          type: array
          items:
            $ref: '#/components/schemas/SizeAndTypeUnitGroupEntryDto'
      required:
        - sizeAndTypeUnitGroupUuid
        - length
        - width
        - height
        - area
        - unitType
        - entityAttributeOrganizationUuid
        - unitGroups
    SizeAndTypeUnitGroupEntryDto:
      type: object
      properties:
        unitGroupUuid:
          type: string
          example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
          description: Unit group UUID
        description:
          type: string
          example: Essential
          description: Unit group description (tier name if applicable)
        currentStreetRate:
          type: number
          example: 15000
          description: Current street rate in pennies
        currentWebRate:
          type: number
          example: 12000
          description: Current web rate in pennies
        baseStreetRate:
          type: number
          example: 15000
          description: Base street rate in pennies
        baseWebRate:
          type: number
          example: 12000
          description: Base web rate in pennies
        numUnits:
          type: number
          example: 10
          description: Total count of units in the group
        numVacantUnits:
          type: number
          example: 5
          description: Total count of vacant units in the group
        averageCurrentRentInPennies:
          type: number
          nullable: true
          example: 145.5
          description: Average current rent in pennies for occupied units
        ratePlanUuid:
          type: string
          nullable: true
          format: uuid
          example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
          description: Rate plan UUID
        amenities:
          description: Amenities shared by all units in the group
          type: array
          items:
            $ref: '#/components/schemas/AmenityDto'
        canShowUnitGroupTenantPortal:
          type: boolean
          example: true
          description: Whether the unit group is visible in the tenant portal
      required:
        - unitGroupUuid
        - description
        - currentStreetRate
        - currentWebRate
        - baseStreetRate
        - baseWebRate
        - numUnits
        - numVacantUnits
        - averageCurrentRentInPennies
        - ratePlanUuid
        - amenities
        - canShowUnitGroupTenantPortal
    AmenityDto:
      type: object
      properties:
        amenityUuid:
          type: string
          description: Amenity UUID
          format: uuid
          example: 123e4567-e89b-12d3-a456-426614174000
        description:
          type: string
          description: Amenity description
          example: Climate Control
      required:
        - amenityUuid
        - description

````