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

# Change dependency release point

> Updates the persistent release column in the blocking issue's project and returns enriched release metadata.



## OpenAPI

````yaml /openapi.json patch /api/orgs/{id}/issues/{issueId}/dependencies/{dependencyId}
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Setup
  - name: Integrations and billing
  - name: Notifications and public
  - name: Private inbox
paths:
  /api/orgs/{id}/issues/{issueId}/dependencies/{dependencyId}:
    patch:
      tags:
        - Issue details
      summary: Change dependency release point
      description: >-
        Updates the persistent release column in the blocking issue's project
        and returns enriched release metadata.
      operationId: patch_api_orgs_id_issues_issueId_dependencies_dependencyId
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: id identifier
        - name: issueId
          in: path
          required: true
          schema:
            type: string
          description: issueId identifier
        - name: dependencyId
          in: path
          required: true
          schema:
            type: string
          description: dependencyId identifier
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                releaseColumnId:
                  type: string
                  format: uuid
                release_column_id:
                  type: string
                  format: uuid
                  description: Snake-case compatibility alias for releaseColumnId.
              additionalProperties: false
              oneOf:
                - required:
                    - releaseColumnId
                - required:
                    - release_column_id
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DependencyMutationResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - bearerAuth: []
components:
  schemas:
    DependencyMutationResponse:
      type: object
      required:
        - dependency
      properties:
        dependency:
          $ref: '#/components/schemas/DependencyMutationEntry'
      additionalProperties: false
    DependencyMutationEntry:
      type: object
      required:
        - id
      properties:
        id:
          type: string
          format: uuid
        org_id:
          type: string
          format: uuid
        blocking_issue_id:
          type: string
          format: uuid
        blocked_issue_id:
          type: string
          format: uuid
        created_by:
          type:
            - string
            - 'null'
          format: uuid
        created_at:
          type: string
          format: date-time
        releaseColumnId:
          type: string
          format: uuid
          description: >-
            Persistent release column in the blocking issue's project. Included
            when the blocking issue is authorized; compatibility reads may omit
            it during a rolling migration.
        release_column_id:
          type: string
          format: uuid
          description: >-
            Snake-case compatibility alias for releaseColumnId. Included with
            the canonical field when the blocking issue is authorized.
        releaseColumn:
          oneOf:
            - type: object
              required:
                - id
                - key
                - label
                - position
                - projectId
              properties:
                id:
                  type: string
                  format: uuid
                key:
                  type: string
                label:
                  type: string
                position:
                  type: integer
                projectId:
                  type: string
                  format: uuid
              additionalProperties: false
            - type: 'null'
          description: >-
            Authorized release-column projection in the blocking issue's
            project. Omitted when the blocking issue is inaccessible;
            compatibility reads may omit it during a rolling migration.
        satisfied:
          type:
            - boolean
            - 'null'
          description: >-
            Whether the blocker is cancelled or its current board-column
            position has reached the release-column position. Null or omitted
            when release metadata is unavailable.
      additionalProperties: false
    Error:
      type: object
      description: >-
        Common error responses contain error. Shared missing-auth and
        unknown-API responses also contain a stable code.
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      examples:
        - error: Unauthorized
          code: unauthorized
        - error: Not found
          code: not_found
      additionalProperties: true
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Authenticated but not allowed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found or not visible
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Unexpected server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````