---
title: "Transfer Project To Personal"
method: POST
path: "/v0/project/{project_id}/transfer-to-personal"
tags: ["Projects"]
---

# Transfer Project To Personal

`POST /v0/project/{project_id}/transfer-to-personal`

Transfer an organizational project to personal ownership.

Requirements:
- Project must be organizational (organization_id IS NOT NULL)
- User must have project:delete permission OR be org owner

Process:
- Sets project.user_id = requesting user
- Sets project.organization_id = NULL
- Deletes all ResourceAccess entries for this project
- Deletes all team shares for this project

Warning: This is a destructive operation that removes team sharing.

## Path parameters

- `project_id` integer, required

## Response `200`

Project transferred successfully

- TransferResponse — Response model for project transfer operations.
  - `success` boolean, required
  - `project_id` integer, required
  - `project_name` string, required
  - `from_type` string, required
  - `to_type` string, required
  - `message` string, required

## Other responses

- `400` — Bad Request - Project is already personal
- `403` — Forbidden - User doesn't have required permissions
- `404` — Project Not Found
- `422` — Validation Error

---

[API](https://skmtc.net/unify/apis/unifyai-http-api-reference.md) · [All operations](https://skmtc.net/unify/apis/unifyai-http-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unify/unifyai-http-api-reference/revisions/900377f918b6/schema)
