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

# Update Task Status

> Update the status of a task on the kanban board. Move tasks through the workflow: not_started → in_progress → in_review → done.



## OpenAPI

````yaml post /entities/actions/update-status
openapi: 3.1.0
info:
  title: Geogen API
  description: >-
    API for accessing LLM visibility data, managing entities, and tracking AI
    mentions.
  version: 1.0.0
servers:
  - url: https://api.geogen.io/v1
    description: Production server
security:
  - bearerAuth: []
paths:
  /entities/actions/update-status:
    post:
      tags:
        - Actions
      summary: Update Task Status
      description: >-
        Update the status of a task on the kanban board. Move tasks through the
        workflow: not_started → in_progress → in_review → done.
      operationId: updateTaskStatus
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - taskId
                - status
              properties:
                taskId:
                  type: string
                  description: The task ID to update
                status:
                  type: string
                  enum:
                    - not_started
                    - in_progress
                    - in_review
                    - done
                  description: New status for the task
      responses:
        '200':
          description: Task status updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
              example:
                success: true
        '400':
          description: Bad request — missing fields or invalid status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key authentication. Format: Bearer wsk_your_api_key'

````