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

# Update Connector

> Trigger a connector software update.



## OpenAPI

````yaml POST /orgs/{org_id}/connectors/{connector_id}/update
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/connectors/{connector_id}/update:
    post:
      tags:
        - connectors
      summary: '`POST /orgs/{org_id}/connectors/{connector_id}/update`'
      description: Trigger a connector software update.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
        - name: connector_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateReq'
        required: true
      responses:
        '200':
          description: Connector already on the target version
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateRes'
        '202':
          description: Update dispatched
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateRes'
        '403':
          description: Forbidden
        '404':
          description: Connector or release version not found
        '422':
          description: Connector offline or too old to update remotely
      security:
        - bearer_auth: []
components:
  schemas:
    UpdateReq:
      type: object
      properties:
        version:
          type:
            - string
            - 'null'
          description: >-
            Target version (`0.1.3` or `v0.1.3`). Omit for the published
            `latest`.
    UpdateRes:
      type: object
      required:
        - target_version
        - artifact
        - dispatched
      properties:
        artifact:
          type: string
          description: Release artifact selected for the connector's platform.
        dispatched:
          type: boolean
          description: >-
            `false` when the connector already reports the target version
            (no-op).
        target_version:
          type: string
          description: Bare semver the connector was told to move to.
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````