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

# Read the organisation's application CI settings

> Read the organisation's application CI settings: the GitHub Actions runner label every pipeline Ankra generates runs on. An organisation that has never chosen one reads the default (ubuntu-latest) with is_default true, which is what its existing pipelines already carry. Readable by any member. A browser session twin is mounted at the same path without the /api/v1 prefix (cookie authentication).



## OpenAPI

````yaml https://platform.ankra.app/openapi.json get /api/v1/org/applications/settings
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /api/v1/org/applications/settings:
    get:
      tags:
        - Applications API
      summary: Read the organisation's application CI settings
      description: >-
        Read the organisation's application CI settings: the GitHub Actions
        runner label every pipeline Ankra generates runs on. An organisation
        that has never chosen one reads the default (ubuntu-latest) with
        is_default true, which is what its existing pipelines already carry.
        Readable by any member. A browser session twin is mounted at the same
        path without the /api/v1 prefix (cookie authentication).
      operationId: get_application_ci_settings_api_v1
      parameters:
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: x-ankra-organisation-id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Ankra-Organisation-Id
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationCISettings'
          description: Successful Response
        '401':
          description: Unauthorized
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ApplicationCISettings:
      description: >-
        The organisation's application CI settings. ci_runner_label is the
        runs-on value generated pipelines carry; is_default reports that the
        organisation has never chosen one, so the label is Ankra's default
        rather than a decision - a build that never starts reads very
        differently under the two.
      properties:
        ci_runner_label:
          title: Ci Runner Label
          type: string
        is_default:
          title: Is Default
          type: boolean
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      required:
        - ci_runner_label
        - is_default
        - updated_at
      title: ApplicationCISettings
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````