Skip to main content
PATCH
/
v1
/
plugins
/
{plugin_id}
/
publish
Update published plugin
curl --request PATCH \
  --url https://api.mixpeek.com/v1/plugins/{plugin_id}/publish \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "icon_base64": "<string>",
  "readme_markdown": "<string>",
  "tags": [
    "<string>"
  ],
  "category": "<string>",
  "model_dependencies": [
    {
      "name": "<string>",
      "source": "builtin",
      "format": "<string>",
      "required": true
    }
  ],
  "is_active": true
}
'
{
  "plugin_id": "<string>",
  "public_id": "<string>",
  "public_name": "<string>",
  "version": "<string>",
  "trust_tier": "community",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "display_name": "<string>",
  "description": "<string>",
  "capabilities": [
    "batch"
  ],
  "tags": [
    "<string>"
  ],
  "category": "<string>",
  "install_count": 0,
  "is_active": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

Path Parameters

plugin_id
string
required

ID of the plugin

Body

application/json

Request to update a published plugin's configuration.

description
string | null
Maximum string length: 1000
icon_base64
string | null
Maximum string length: 300000
readme_markdown
string | null
Maximum string length: 50000
tags
string[] | null
category
string | null
Maximum string length: 50
model_dependencies
ModelDependency · object[] | null
is_active
boolean | null

Response

Successful Response

Full published plugin info (returned to the publisher).

plugin_id
string
required
public_id
string
required
public_name
string
required
version
string
required
trust_tier
enum<string>
required
Available options:
community,
verified,
official
created_at
string<date-time>
required
updated_at
string<date-time>
required
display_name
string | null
description
string | null
capabilities
enum<string>[]
Available options:
batch,
realtime
tags
string[]
category
string | null
install_count
integer
default:0
is_active
boolean
default:true