---
title: "Create a folder"
method: POST
path: "/api/v2/folders"
tags: ["Folders"]
---

# Create a folder

`POST /api/v2/folders`

Creates a folder inside a project. Requires a `name` and the `project_id`.

```json
{
  "data": {
    "type": "folders",
    "attributes": {
      "name": "Design",
      "project_id": 31002
    }
  }
}
```

## Headers

- `X-Organization-Id` string, required

## Response `201`

A single folder resource response.

## Other responses

- `422` — The folder could not be created due to validation errors.

---

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