---
title: "Create project user"
method: POST
path: "/organization/projects/{project_id}/users"
tags: ["Projects"]
---

# Create project user

`POST /organization/projects/{project_id}/users`

Adds a user to the project. Users must already be members of the organization to be added to a project.

## Path parameters

- `project_id` string, required

## Request body

- ProjectUserCreateRequest
  - `user_id` string, nullable — The ID of the user.
  - `email` string, nullable — Email of the user to add.
  - `role` string, required — `owner` or `member`

## Response `200`

User added to project successfully.

- ProjectUser — Represents an individual user in a project.
  - `object` 'organization.project.user', required — The object type, which is always `organization.project.user`
  - `id` string, required — The identifier, which can be referenced in API endpoints
  - `name` string, nullable — The name of the user
  - `email` string, nullable — The email address of the user
  - `role` string, required — `owner` or `member`
  - `added_at` integer, required — The Unix timestamp (in seconds) of when the project was added.

## Other responses

- `400` — Error response for various conditions.

## Changes

- **2026-05-01** `918e83711c91` — 6 breaking, 5 info
  - removed the enum value `member` of the request property `role`
  - removed the enum value `owner` of the request property `role`
  - the response property `email` became optional for the status `200`
  - the response property `name` became optional for the status `200`
  - …7 more
- **2026-04-28** `fa32d6e7d961` — 1 info
  - the endpoint scheme security `AdminApiKeyAuth` was added to the API

[Change history](https://skmtc.dev/openai/apis/openai-api/changes/organization/projects/:project_id/users/post.md)

---

[API](https://skmtc.dev/openai/apis/openai-api.md) · [All operations](https://skmtc.dev/openai/apis/openai-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openai/openai-api/revisions/dcd35773a322/schema)
