---
title: "Update published extractor"
method: PATCH
path: "/v1/extractors/{extractor_id}/publish"
tags: ["Extractor Publishing"]
---

# Update published extractor

`PATCH /v1/extractors/{extractor_id}/publish`

## Path parameters

- `extractor_id` string, required — ID of the extractor

## Request body

- UpdatePublishedExtractorRequest
  - `description` string, nullable
  - `icon_base64` string, nullable
  - `readme_markdown` string, nullable
  - `tags` string[], nullable
  - `category` string, nullable
  - `model_dependencies` ModelDependency[], nullable
    - `name` string, required — Model name or identifier
    - `source` string — Where model comes from: 'builtin' (platform service), 'bundled' (in archive), 'org_model' (separate upload)
    - `format` string, nullable — Model format (safetensors, onnx, pytorch, huggingface)
    - `required` boolean — Whether this dependency is required
  - `is_active` boolean, nullable

## Response `200`

Successful Response

- PublishedExtractorResponse
  - `extractor_id` string, required
  - `public_id` string, required
  - `public_name` string, required
  - `display_name` string, nullable
  - `description` string, nullable
  - `version` string, required
  - `trust_tier` 'community' | 'verified' | 'official', required
  - `capabilities` ExtractorCapability[]
  - `tags` string[]
  - `category` string, nullable
  - `install_count` integer
  - `is_active` boolean
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/versions/23e05292e326/schema)
