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

# Delete Release Channel

> Deletes an app release channel. If shared with client organizations, deleting also unshares the release channel.




## OpenAPI

````yaml Delete /v1/apps/{packageName}/release-channels/{releaseChannelId}
openapi: 3.1.0
info:
  title: ManageXR API
  description: API documentation for ManageXR
  version: 1.0.0
servers:
  - url: https://managexrapi.com
    description: ManageXR API Server
security:
  - basicAuth: []
paths:
  /v1/apps/{packageName}/release-channels/{releaseChannelId}:
    delete:
      summary: Delete release channel
      description: >
        Deletes an app release channel. If shared with client organizations,
        deleting also unshares the release channel.
      parameters:
        - name: packageName
          in: path
          required: true
          schema:
            type: string
          description: Package name of the app
        - name: releaseChannelId
          in: path
          required: true
          schema:
            type: string
          description: Unique identifier of the release channel
        - name: organizationId
          in: query
          required: false
          schema:
            type: string
          description: >
            Unique identifier of the organization. This parameter is only
            necessary when using multi-organization API keys. 


            Defaults to the organizationId associated with the API key.
      responses:
        '200':
          description: Release channel deleted successfully
        '400':
          description: Release channel package name mismatch
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    example: 400
                  message:
                    type: string
                    example: >-
                      Release channel with id rc_123 does not match the provided
                      package name com.example.app
                  error:
                    type: string
                    example: ManageXR Error
              example:
                statusCode: 400
                message: >-
                  Release channel with id rc_123 does not match the provided
                  package name com.example.app
                error: ManageXR Error
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    example: 403
                  message:
                    type: string
                    example: Forbidden
                  error:
                    type: string
                    example: ManageXR Error
              example:
                statusCode: 403
                message: Forbidden
                error: ManageXR Error
        '404':
          description: Release channel not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    example: 404
                  message:
                    type: string
                    example: Release channel with id rc_123 not found
                  error:
                    type: string
                    example: ManageXR Error
              example:
                statusCode: 404
                message: Release channel with id rc_123 not found
                error: ManageXR Error
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        API key based authentication where <encoded-value> is the Base64
        encoding of `API_KEY_ID`:`API_KEY_SECRET`

        - **Username**: The API Key ID.

        - **Password**: The API Key Secret.

````