v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-214977372.7 KB
Digital Asset Management (DAM)
Saved Extensions

Update saved extension

This API updates an existing saved extension. You can update the name, description, or config.

patch/v1/saved-extensions/{id}

Path parameters

idstring required

The unique ID of the saved extension.

Request body

namestring

Updated name of the saved extension.

descriptionstring

Updated description of the saved extension.

Example request

{
  "config": {
    "tasks": [
      {
        "instruction": "What types of clothing items are visible in this image?",
        "vocabulary": [
          "shirt",
          "tshirt",
          "dress",
          "trousers",
          "jacket"
        ]
      }
    ]
  }
}

Response

Saved extension updated successfully.

idstring

Unique identifier of the saved extension.

namestring

Name of the saved extension.

descriptionstring

Description of the saved extension.

createdAtstring date-time

Timestamp when the saved extension was created.

updatedAtstring date-time

Timestamp when the saved extension was last updated.

Example response

{
  "id": "ext_abc123",
  "name": "Car Quality Analysis",
  "description": "Analyzes vehicle images for type, condition, and quality assessment",
  "config": {
    "tasks": [
      {
        "instruction": "What types of clothing items are visible in this image?",
        "vocabulary": [
          "shirt",
          "tshirt",
          "dress",
          "trousers",
          "jacket"
        ]
      }
    ]
  }
}