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

# Prompt aktualisieren

> Aktualisiere einen bestehenden Prompt

Aktualisiert einen bestehenden Prompt in deinem Workspace. Gib nur die Felder an, die du ändern möchtest.

## Basis-URL

```
https://api.langdock.com/prompts/v1/{promptId}
```

<Warning>
  **Dedicated Deployments**

  Ersetze `api.langdock.com` durch `<your-deployment-url>/api/public` in allen Anfragen.
</Warning>

## Erforderliche Scopes

Dieser Endpoint erfordert den `PROMPT_API` Scope.

<Info>
  Erfordert Zugriff als Ersteller, Workspace-Editor oder Gruppen-Editor des Prompt-Ordners.
</Info>

## Parameter

### Pfad-Parameter

| Parameter  | Typ    | Erforderlich | Beschreibung                          |
| ---------- | ------ | ------------ | ------------------------------------- |
| `promptId` | string | Ja           | UUID des zu aktualisierenden Prompts. |

### Request Body

| Parameter             | Typ            | Beschreibung                                                                                                                                 |
| --------------------- | -------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `title`               | string         | Prompt-Titel. Minimum: 2 Zeichen. Maximum: 100 Zeichen.                                                                                      |
| `prompt`              | string         | Prompt-Inhalt. Minimum: 2 Zeichen. Maximum: 120000 Zeichen.                                                                                  |
| `promptFolderId`      | string \| null | Ordner-UUID zum Zuweisen oder `null`, um den Ordner zu entfernen. Darf nicht gesetzt sein, solange der Prompt mit dem Workspace geteilt ist. |
| `sharedWithWorkspace` | boolean        | Teilt den Prompt mit dem Workspace. Erfordert `sharePrompts`. Darf nicht `true` sein, solange der Prompt in einem Ordner liegt.              |

## Beispiel

```javascript theme={null}
const axios = require("axios");

async function updatePrompt(promptId) {
  const response = await axios.patch(
    `https://api.langdock.com/prompts/v1/${promptId}`,
    {
      title: "Support Reply",
      prompt: "Write a concise customer reply. Include the next best action and the ticket ID."
    },
    {
      headers: {
        Authorization: "Bearer YOUR_API_KEY",
        "Content-Type": "application/json"
      }
    }
  );

  console.log("Updated prompt:", response.data.prompt.updatedAt);
}

updatePrompt("550e8400-e29b-41d4-a716-446655440000");
```

## Antwortformat

### Erfolgsantwort (200 OK)

```typescript theme={null}
{
  prompt: {
    id: string;
    title: string;
    prompt: string;
    createdBy: string | null;
    promptFolderId: string | null;
    sharedWithWorkspace: boolean;
    createdAt: string | null;
    updatedAt: string | null;
  };
}
```

## Fehlerbehandlung

| Statuscode | Beschreibung                                                                                                 |
| ---------- | ------------------------------------------------------------------------------------------------------------ |
| 400        | Ungültiger Request Body, fehlende Update-Felder oder Workspace-Freigabe kombiniert mit einer Ordnerzuweisung |
| 401        | Ungültiger oder fehlender API Key                                                                            |
| 403        | Fehlender `PROMPT_API` Scope, kein Schreibzugriff oder keine Freigabe-Berechtigung                           |
| 404        | Prompt oder Prompt-Ordner nicht gefunden                                                                     |
| 429        | Rate Limit überschritten                                                                                     |
| 500        | Interner Serverfehler                                                                                        |

<Info>
  Langdock blockiert bewusst Browser-basierte Anfragen, um deinen API-Schlüssel zu schützen und die Sicherheit deiner Anwendungen zu gewährleisten. Weitere Informationen findest du in unserem Guide zu [Best Practices für API-Schlüssel](/de/admin/ai-adoption-and-rollout/best-practices/api-key-best-practices).
</Info>


## OpenAPI

````yaml PATCH /prompts/v1/{promptId}
openapi: 3.0.0
info:
  title: Langdock API
  version: 3.0.0
servers:
  - url: https://api.langdock.com
    description: Production
security:
  - bearerAuth: []
paths:
  /prompts/v1/{promptId}:
    patch:
      tags:
        - Prompts
      summary: Update a prompt
      description: Updates an existing prompt in your workspace.
      operationId: updatePrompt
      parameters:
        - $ref: '#/components/parameters/PromptId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePromptRequest'
      responses:
        '200':
          description: Prompt updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PromptResponse'
        '400':
          description: Invalid request body
        '401':
          description: Invalid or missing API key
        '403':
          description: Missing required scope, write access, or share permission
        '404':
          description: Prompt or prompt folder not found
        '429':
          description: Rate limit exceeded
        '500':
          description: Internal server error
components:
  parameters:
    PromptId:
      name: promptId
      in: path
      required: true
      description: UUID of the prompt.
      schema:
        type: string
        format: uuid
  schemas:
    UpdatePromptRequest:
      type: object
      minProperties: 1
      additionalProperties: false
      properties:
        title:
          type: string
          minLength: 2
          maxLength: 100
          description: Prompt title.
        prompt:
          type: string
          minLength: 2
          maxLength: 120000
          description: Prompt content.
        promptFolderId:
          type: string
          format: uuid
          nullable: true
          description: Folder UUID to assign, or null to remove the folder.
        sharedWithWorkspace:
          type: boolean
          description: Share the prompt with the workspace.
    PromptResponse:
      type: object
      required:
        - prompt
      properties:
        prompt:
          $ref: '#/components/schemas/Prompt'
    Prompt:
      type: object
      required:
        - id
        - title
        - prompt
        - sharedWithWorkspace
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the prompt.
        title:
          type: string
          minLength: 2
          maxLength: 100
          description: Prompt title.
        prompt:
          type: string
          minLength: 2
          maxLength: 120000
          description: Prompt content.
        createdBy:
          type: string
          format: uuid
          nullable: true
          description: User ID of the prompt creator.
        promptFolderId:
          type: string
          format: uuid
          nullable: true
          description: Folder ID the prompt is assigned to.
        sharedWithWorkspace:
          type: boolean
          description: Whether the prompt is shared with the workspace.
        createdAt:
          type: string
          format: date-time
          nullable: true
          description: ISO 8601 timestamp for prompt creation.
        updatedAt:
          type: string
          format: date-time
          nullable: true
          description: ISO 8601 timestamp for the latest prompt update.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key as Bearer token. Format "Bearer YOUR_API_KEY"

````