Skip to main content

Method

POST /v1/marketplace/products/:productId/enable Requires the catalog:write scope and workspace context.

Path Parameters

productId
string
required
Marketplace product ID to expose.

Headers

Authorization
string
required
Bearer token (e.g. Authorization: Bearer YOUR_API_KEY)
curl -X POST "https://api.voyantcloud.com/v1/marketplace/products/mp_prod_citybreaks_rome/enable" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "ok": true,
  "entry": {
    "workspace_id": "ws_a1b2c3",
    "provider_product_id": "mp_prod_citybreaks_rome",
    "visibility": "visible"
  }
}
The endpoint is idempotent. Re-enabling an already visible product simply updates the existing marketplace.workspace_provider_entries row.
This endpoint is not available in sandbox workspaces. Attempting to enable marketplace products in sandbox mode will return a 403 error.