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

# Get task external links

> Get all links from a task to resources in connected integrations, such as GitHub or Gitea issues.



## OpenAPI

````yaml /openapi.json get /external-link/task/{taskId}
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /external-link/task/{taskId}:
    get:
      tags:
        - External Links
      summary: Get task external links
      description: >-
        Get all links from a task to resources in connected integrations, such
        as GitHub or Gitea issues.
      operationId: getExternalLinksByTask
      parameters:
        - schema:
            type: string
          required: true
          name: taskId
          in: path
      responses:
        '200':
          description: External links for the task
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalLink'
        '400':
          description: Unknown task, or its workspace could not be determined
          content:
            text/plain:
              schema:
                type: string
        '401':
          description: Missing or invalid credentials
        '403':
          description: No access to the task's workspace
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    ExternalLink:
      type: object
      properties:
        id:
          type: string
        taskId:
          type: string
        integrationId:
          type: string
        resourceType:
          type: string
          description: The kind of remote resource, e.g. `issue` or `pull_request`.
        externalId:
          type: string
          description: The provider's own identifier for the linked resource.
        url:
          type: string
        title:
          type:
            - string
            - 'null'
        metadata:
          description: >-
            Provider-specific payload, parsed from the stored JSON string. Null
            when the link has no metadata.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        integration:
          $ref: '#/components/schemas/ExternalLinkIntegration'
      required:
        - id
        - taskId
        - integrationId
        - resourceType
        - externalId
        - url
        - title
        - createdAt
        - updatedAt
        - integration
    ExternalLinkIntegration:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
      required:
        - id
        - type
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````