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

# List Release Channels

> Returns a list of all release channels for a given application



## OpenAPI

````yaml Get /v1/apps/{packageName}/release-channels
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:
    get:
      summary: List app release channels
      description: Returns a list of all release channels for a given application
      parameters:
        - name: packageName
          in: path
          required: true
          schema:
            type: string
          description: The package name of the app
        - 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: A list of release channels
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Unique identifier of the release channel
                          example: rc_123
                        name:
                          type: string
                          description: Name of the release channel
                          example: Stable
                        type:
                          type: string
                          enum:
                            - app
                            - link
                            - video
                          description: Type of the release channel
                          example: app
                        packageName:
                          type: string
                          description: Package name of the app
                          example: com.example.app
                        targetVersion:
                          type: object
                          description: The target app version for this release channel
                          properties:
                            id:
                              type: string
                              description: Unique identifier of the app version
                              example: av_123
                            type:
                              type: string
                              enum:
                                - managed
                                - shared
                                - external
                                - instant
                              description: Type of the app version
                              example: managed
                            configurationDeployments:
                              type: object
                              description: >-
                                Map of configuration ids to device count using
                                application
                              example:
                                config_123: 1
                                config_456: 0
                            createdAt:
                              type: number
                              description: Creation timestamp
                              example: 1645615777448
                            updatedAt:
                              type: number
                              description: Last update timestamp
                              example: 1687352117203
                            versionCode:
                              type: number
                              description: Version code of the app
                              example: 83894522
                            versionName:
                              type: string
                              description: Version name of the app
                              example: 8.7.8.1206
                            apkSize:
                              type: number
                              description: Size of the APK file in bytes
                              example: 72633861
                            selfHosted:
                              type: boolean
                              description: Whether the app is self-hosted
                              example: false
                        sharedOrganizations:
                          type: array
                          description: >-
                            List of organizations this release channel is shared
                            with
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                description: Unique identifier of the organization
                                example: org_789
                              name:
                                type: string
                                description: Name of the organization
                                example: Example Org
              example:
                data:
                  - id: rc_123
                    name: Stable
                    type: app
                    packageName: com.example.app
                    targetVersion:
                      id: av_123
                      type: managed
                      configurationDeployments:
                        config_123: 1
                        config_456: 0
                      createdAt: 1645615777448
                      updatedAt: 1687352117203
                      versionCode: 83894522
                      versionName: 8.7.8.1206
                      apkSize: 72633861
                      selfHosted: false
                    sharedOrganizations:
                      - id: org_789
                        name: Example Org
                  - id: rc_456
                    name: Beta
                    type: app
                    packageName: com.example.app
                    targetVersion:
                      id: av_456
                      type: shared
                      configurationDeployments:
                        config_123: 0
                        config_456: 1
                      createdAt: 1645615777448
                      updatedAt: 1687352117203
                      versionCode: 83894522
                      versionName: 8.7.8.1206
                      apkSize: 72633861
                      selfHosted: false
                    sharedOrganizations: []
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.

````