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

# Move Task

> **Required plan:** Standard, Professional, or Enterprise.

Move a task to a specified task group.



## OpenAPI

````yaml /en/api/openapi.json post /task/moveToGroup
openapi: 3.0.1
info:
  title: Octoparse API
  description: >-
    Octoparse OpenAPI allows you to programmatically manage tasks, run cloud
    extractions, and retrieve scraped data. Base URL:
    `https://openapi.octoparse.com`
  version: 1.0.0
servers:
  - url: https://openapi.octoparse.com
    description: Octoparse API Server
security: []
paths:
  /task/moveToGroup:
    post:
      tags:
        - Task
      summary: Move Task
      description: |-
        **Required plan:** Standard, Professional, or Enterprise.

        Move a task to a specified task group.
      operationId: moveTask
      parameters:
        - name: taskId
          in: query
          required: true
          schema:
            type: string
          description: ID of the task to move
        - name: taskGroupId
          in: query
          required: true
          schema:
            type: string
          description: Destination task group ID
      responses:
        '200':
          description: Task moved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      moved:
                        type: boolean
                  requestId:
                    type: string
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Use the access_token obtained from POST /token

````