---
title: "Create a user project"
method: POST
path: "/user/projects"
tags: ["projects"]
---

# Create a user project

`POST /user/projects`

Creates a user project board. Returns a `410 Gone` status if the user does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.

## Request body

- object
  - `name` string, required — Name of the project
  - `body` string, nullable — Body of the project

## Response `201`

Response

- Project — Projects are a way to organize columns and cards of work.
  - `owner_url` string, uri, required
  - `url` string, uri, required
  - `html_url` string, uri, required
  - `columns_url` string, uri, required
  - `id` integer, required
  - `node_id` string, required
  - `name` string, required — Name of the project
  - `body` string, nullable, required — Body of the project
  - `number` integer, required
  - `state` string, required — State of the project; either 'open' or 'closed'
  - `creator` NullableSimpleUser, nullable, required — A GitHub user.
    - `name` string, nullable
    - `email` string, nullable
    - `login` string, required
    - `id` integer, required
    - `node_id` string, required
    - `avatar_url` string, uri, required
    - `gravatar_id` string, nullable, required
    - `url` string, uri, required
    - `html_url` string, uri, required
    - `followers_url` string, uri, required
    - `following_url` string, required
    - `gists_url` string, required
    - `starred_url` string, required
    - `subscriptions_url` string, uri, required
    - `organizations_url` string, uri, required
    - `repos_url` string, uri, required
    - `events_url` string, required
    - `received_events_url` string, uri, required
    - `type` string, required
    - `site_admin` boolean, required
    - `starred_at` string
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `organization_permission` 'read' | 'write' | 'admin' | 'none' — The baseline permission that all organization members have on this project. Only present if owner is an organization.
  - `private` boolean — Whether or not this project can be seen by everyone. Only present if owner is an organization.

## Other responses

- `304` — Not modified
- `401` — Requires authentication
- `403` — Forbidden
- `422` — Validation failed, or the endpoint has been spammed.

---

[API](https://skmtc.net/github/apis/github-v3-rest-api-4.md) · [All operations](https://skmtc.net/github/apis/github-v3-rest-api-4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/github/github-v3-rest-api-4/versions/ee6c7a46328e/schema)
