---
title: "Create a project on a user's behalf (target user is the owner)"
method: POST
path: "/v1/admin/projects"
tags: ["Admin Projects"]
---

# Create a project on a user's behalf (target user is the owner)

`POST /v1/admin/projects`

## Request body

- AdminCreateProjectDto
  - `userId` string, uuid, required
  - `name` string, required
  - `type` 'renovation' | 'new_home_construction' | 'other'

## Response `201`

Project created successfully

- AdminCreateProjectResponseDto
  - `success` boolean, required — Indicates if the request was successful
  - `message` string, required — Human readable message
  - `data` object, required — Response data
    - `id` string, uuid, required
    - `name` string, required
    - `type` 'renovation' | 'new_home_construction' | 'other', nullable, required
    - `isDeleted` boolean, required
    - `createdAt` unknown, required
    - `lastActivityAt` unknown, required
    - `floorplans` object[], required
      - `assetId` string, uuid, required
      - `name` string, required
      - `origin` 'generated' | 'drawn' | 'uploaded' | 'recognized', nullable, required
      - `floorCount` integer, required
      - `thumbnailUrl` string, uri, nullable, required
      - `isDeleted` boolean, required
      - `createdAt` unknown, required
  - `timestamp` string, date-time, required — Timestamp of the response

---

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