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

# Stop a live app (keeps approval)

> Removes the live route but keeps the owner's approval, so a subsequent POST /publish is immediately live.



## OpenAPI

````yaml /api-reference/openapi.json delete /publish/{name}
openapi: 3.1.0
info:
  title: Meradomo Public API
  version: 1.0.0
  description: >-
    Two surfaces: the local management API on 127.0.0.1:8765 (Publish) and the
    OAuth endpoints on account.meradomo.com (Connect). No SDK — these HTTP
    endpoints are the integration surface.
  license:
    name: MIT
servers:
  - url: http://127.0.0.1:8765
    description: Local management API (Publish)
  - url: https://account.meradomo.com
    description: Control plane (Connect / OAuth)
security: []
paths:
  /publish/{name}:
    delete:
      tags:
        - Publish
      summary: Stop a live app (keeps approval)
      description: >-
        Removes the live route but keeps the owner's approval, so a subsequent
        POST /publish is immediately live.
      operationId: unpublish
      parameters:
        - name: name
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Route removed
      servers:
        - url: http://127.0.0.1:8765

````