> ## 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.

# Turn off autopay for a unit rental record

> Clears the autopay payment profile on the unit rental record and archives the
      auto-applied promotions that required autopay. The profile's autoPayEnabled flag is only
      turned off when no other active rental record still uses that profile.
      Idempotent — succeeds when autopay is already off, and the response says which profile was
      cleared, or null when there was nothing to clear.



## OpenAPI

````yaml /openapi/integration-openapi.json post /api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/rentalRecords/{unitRentalRecordUuid}/disableAutoPay
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: Rent Changes
    description: >-
      Applied rent-change history per tenancy, with the rent that preceded each
      period
  - 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: GL Accounts
    description: Chart of accounts listing per facility
  - name: Journal Entries
    description: GL journal entry feed per facility, line by line
  - 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 and removal
paths:
  /api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/rentalRecords/{unitRentalRecordUuid}/disableAutoPay:
    post:
      tags:
        - Rental Records
      summary: Turn off autopay for a unit rental record
      description: >-
        Clears the autopay payment profile on the unit rental record and
        archives the
              auto-applied promotions that required autopay. The profile's autoPayEnabled flag is only
              turned off when no other active rental record still uses that profile.
              Idempotent — succeeds when autopay is already off, and the response says which profile was
              cleared, or null when there was nothing to clear.
      operationId: FacilityRentalRecordsController_disableAutoPay
      parameters:
        - name: facilityUuid
          required: true
          in: path
          schema:
            type: string
        - name: unitRentalRecordUuid
          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.
      responses:
        '200':
          description: Autopay turned off, or already off
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisableAutoPayResponseDto'
        '400':
          description: Autopay was changed by another request
        '404':
          description: Unit rental record not found for this facility
components:
  schemas:
    DisableAutoPayResponseDto:
      type: object
      properties:
        unitRentalRecordUuid:
          type: object
          description: The unit rental record autopay was turned off for
          example: b71d4e09-8c32-4f6a-ae15-2d90c7f3b846
        disabledPaymentProfileUuid:
          type: object
          nullable: true
          description: >-
            The payment profile that was removed from autopay, or null when
            autopay was already off
          example: c0a58f13-77d2-4e91-b3ac-914e6d20f5b7
      required:
        - unitRentalRecordUuid
        - disabledPaymentProfileUuid

````