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

# Describe the application's registry robot

> Report whether a push robot minted on the registry this application publishes to backs its repository login, and when none does, why - the organisation's project is not provisioned, or the declared registry names no admin_credential_name for Ankra to mint one with. Never contacts the registry. 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/{application_id}/registry-robot
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /api/v1/org/applications/{application_id}/registry-robot:
    get:
      tags:
        - applications
      summary: Describe the application's registry robot
      description: >-
        Report whether a push robot minted on the registry this application
        publishes to backs its repository login, and when none does, why - the
        organisation's project is not provisioned, or the declared registry
        names no admin_credential_name for Ankra to mint one with. Never
        contacts the registry. A browser session twin is mounted at the same
        path without the /api/v1 prefix (cookie authentication).
      operationId: >-
        get_application_registry_robot_api_v1_org_applications__application_id__registry_robot_get
      parameters:
        - in: path
          name: application_id
          required: true
          schema:
            title: Application Id
            type: string
        - 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/ApplicationRegistryRobot'
          description: Successful Response
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Application not found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ApplicationRegistryRobot:
      properties:
        created_at:
          title: Created At
          type: string
        credential_name:
          description: Registry credential holding the robot login.
          title: Credential Name
          type: string
        declared:
          description: >-
            The robot lives on a registry the organisation operates rather than
            on Ankra's.
          title: Declared
          type: boolean
        host:
          title: Host
          type: string
        manageable:
          description: >-
            Ankra can mint and rotate a robot on this registry: always on the
            organisation's own registry, and on a declared registry once
            admin_credential_name names a robot administrator.
          title: Manageable
          type: boolean
        message:
          description: >-
            Why no robot is provisioned or manageable, and what would change
            that.
          title: Message
          type: string
        password_secret_name:
          title: Password Secret Name
          type: string
        project:
          title: Project
          type: string
        provisioned:
          description: >-
            A push robot minted on the registry the application publishes to
            backs its repository login.
          title: Provisioned
          type: boolean
        robot_name:
          title: Robot Name
          type: string
        rotated_at:
          title: Rotated At
          type: string
        stale:
          description: >-
            The recorded robot was minted on a registry the application no
            longer publishes to.
          title: Stale
          type: boolean
        username_secret_name:
          title: Username Secret Name
          type: string
      required:
        - provisioned
        - manageable
        - robot_name
        - credential_name
        - host
        - project
        - declared
        - created_at
        - rotated_at
        - stale
        - username_secret_name
        - password_secret_name
        - message
      title: ApplicationRegistryRobot
      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

````