Skip to main content

unpublish_plugin

Delete a workspace-published plugin from the account's catalog and disable it for this project. Only plugins your workspace published can be unpublished — the global catalog can't be touched. To just disable a catalog plugin for one project, use remove_plugin.

Request

DELETE /api/v1/ops/projects/{project}/plugins/{slug}
ParameterInTypeRequiredDescription
projectpathstringyesThe project's public id.
slugpathstringyesThe workspace-published plugin's slug.
curl -X DELETE -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/plugins/my-plugin"

Response

{ "ok": true, "slug": "my-plugin" }

Errors

HTTPWhen
404 not_foundNo such project, or the slug isn't a workspace-published plugin.