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

# Delete App

> Hard-delete an application and everything beneath it.

This deliberately bypasses the durable-mutation receipt plumbing: deletion
is naturally idempotent at the resource level (a retry observes 404), the
204 response carries no secret or body worth replaying, and a receipt
would itself be app-referencing data the deletion must erase. The UI
collects an explicit typed confirmation before calling this route.



## OpenAPI

````yaml /openapi.json delete /v1/organizations/{organization_id}/apps/{app_id}
openapi: 3.1.0
info:
  description: Are we on the same page?
  title: Synapse
  version: 0.1.0
servers: []
security: []
paths:
  /v1/organizations/{organization_id}/apps/{app_id}:
    delete:
      tags:
        - v1 control plane
      summary: Delete App
      description: >-
        Hard-delete an application and everything beneath it.


        This deliberately bypasses the durable-mutation receipt plumbing:
        deletion

        is naturally idempotent at the resource level (a retry observes 404),
        the

        204 response carries no secret or body worth replaying, and a receipt

        would itself be app-referencing data the deletion must erase. The UI

        collects an explicit typed confirmation before calling this route.
      operationId: delete_app_v1_organizations__organization_id__apps__app_id__delete
      responses:
        '204':
          description: Successful Response
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
        - SessionCookie: []
components:
  securitySchemes:
    BearerAuth:
      description: Named syn_ API key or migration-only legacy key.
      scheme: bearer
      type: http
    ApiKeyAuth:
      description: Header alias for a named or legacy API key.
      in: header
      name: X-API-Key
      type: apiKey
    SessionCookie:
      description: Opaque administrator browser session.
      in: cookie
      name: synapse_session
      type: apiKey

````