---
title: "Create marketplace"
method: POST
path: "/v1/marketplaces"
tags: ["Marketplaces"]
---

# Create marketplace

`POST /v1/marketplaces`

Creates a new private marketplace and grants the creator manager access.

## Request body

- object
  - `name` string, required
  - `description` string, nullable
  - `logoUrl` string, nullable

## Response `201`

Marketplace created successfully.

- PluginArchMarketplaceMutationResponse
  - `ok` true, required
  - `item` PluginArchMarketplace, required
    - `id` string, typeid, required — Den TypeID with 'mkt_' prefix and a 26-character base32 suffix.
    - `organizationId` string, typeid, required — Den TypeID with 'org_' prefix and a 26-character base32 suffix.
    - `name` string, required
    - `description` string, nullable, required
    - `logoUrl` string, nullable, required
    - `status` 'active' | 'inactive' | 'deleted' | 'archived', required
    - `createdByOrgMembershipId` string, typeid, required — Den TypeID with 'om_' prefix and a 26-character base32 suffix.
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
    - `deletedAt` string, date-time, nullable, required
    - `pluginCount` integer

## Other responses

- `400` — The marketplace creation request was invalid.
- `401` — The caller must be signed in to create marketplaces.
- `403` — The caller lacks permission to create marketplaces.

---

[API](https://skmtc.net/openworklabs/apis/den-api.md) · [All operations](https://skmtc.net/openworklabs/apis/den-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openworklabs/den-api/revisions/54cdbd4ecffa/schema)
