> ## 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.

# Aufgabenparameter aktualisieren

> **Erforderlicher Plan:** Professional oder Enterprise.

Aktualisieren Sie Aufgabenparameter einschließlich Schleifenparametern (URLs, Textlisten) und Aktionseigenschaften.



## OpenAPI

````yaml /de/api/openapi.json post /task/updateTaskParameters
openapi: 3.0.1
info:
  title: Octoparse API
  description: >-
    Mit der Octoparse OpenAPI können Sie Aufgaben programmgesteuert verwalten,
    Cloud-Extraktionen ausführen und gescrapte Daten abrufen. Basis-URL:
    `https://openapi.octoparse.com`
  version: 1.0.0
servers:
  - url: https://openapi.octoparse.com
    description: Octoparse API-Server
security: []
paths:
  /task/updateTaskParameters:
    post:
      tags:
        - Task
      summary: Aufgabenparameter aktualisieren
      description: >-
        **Erforderlicher Plan:** Professional oder Enterprise.


        Aktualisieren Sie Aufgabenparameter einschließlich Schleifenparametern
        (URLs, Textlisten) und Aktionseigenschaften.
      operationId: updateTaskParameters
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - taskId
                - actions
              properties:
                taskId:
                  type: string
                actions:
                  type: array
                  items:
                    type: object
                    properties:
                      actionType:
                        type: string
                      actionId:
                        type: string
                      properties:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                            value:
                              type: string
                      loopItems:
                        type: object
                        properties:
                          actionId:
                            type: string
                          loopType:
                            type: string
                          loopItems:
                            type: array
                            items:
                              type: string
                          isAppend:
                            type: boolean
      responses:
        '200':
          description: Aufgabenparameter aktualisiert
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      taskId:
                        type: string
                      updatedParameters:
                        type: object
                  requestId:
                    type: string
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Senden Sie einen Octoparse-API-Schlüssel im Header x-api-key. Schlüssel
        können Sie im Octoparse-Kontocenter erstellen und verwalten. Sie
        beginnen normalerweise mit op_sk_.
    bearerAuth:
      type: http
      scheme: bearer
      description: Verwenden Sie das mit POST /token abgerufene access_token.

````