---
title: "Create a workspace"
method: POST
path: "/api/v1/workspaces/"
tags: ["workspaces"]
---

# Create a workspace

`POST /api/v1/workspaces/`

Creates a new workspace and adds the user as a Workspace Admin.

## Headers

- `Authorization` string, required

## Request body

- CreateWorkspace
  - `title` string, required — Name of workspace
  - `naivety_distribution_rate` number, double, nullable — Control the balance between speed of your studies and the naivety of the participants. If not defined, by default Prolific calculates the best rate for most studies taking into account the `filters` and the `total_available_places` needed for this study. Use 0 if your priority is speed. When this property is set to 0 all eligible participants will have access to your study at the same time, without any prioritization. You can also set this at a project and study level.
  - `currency_code` string — Currency used for all transactions within the workspace. Must be GBP or USD.

## Response `201`

Created workspace

- Workspace
  - `id` string, required — Workspace id. It is created by Prolific.
  - `title` string, required — Name of workspace
  - `description` string — What is this workspace used for
  - `owner` string — Workspace id. It is created by Prolific.
  - `users` WorkspaceUser[] — Data for a user related to a workspace
    - `id` string, required — Id of user
    - `name` string — Name of user
    - `email` string — email of user
    - `roles` string[] — User roles in workspace
  - `projects` ProjectShort[] — Data for a project related to a workspace
    - `id` string, required — Project id. It is created by Prolific.
    - `title` string, required — Name of project
    - `description` string — What is this project used for
    - `owner` string — User id of the creator of the project. It is created by Prolific.
    - `type` 'PRIVATE' | 'PUBLIC', required — Project visibility type.
    - `public_details` PublicDetails
      - `status` 'ENABLED' | 'DISABLED' — Participant-facing publication status for a public project.
      - `title` string — Participant-facing title for the public project.
      - `short_description` string — Short participant-facing summary shown to participants for the public project.
      - `description` string — Additional participant-facing information shown to participants for the public project.
    - `users` WorkspaceUser[] — Data for all users who have access to this project
      - `id` string, required — Id of user
      - `name` string — Name of user
      - `email` string — email of user
      - `roles` string[] — User roles in workspace
    - `naivety_distribution_rate` number, double, nullable — The rate at which the studies within this project are distributed.
  - `wallet` string — Wallet tied to workspace
  - `naivety_distribution_rate` number, double, nullable — The rate at which the studies within this workspace are distributed.

## Other responses

- `400` — Error

---

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