---
title: "Create Project Object"
method: POST
path: "/api/custom-entity/v1/projects"
tags: ["Project Management"]
---

# Create Project Object

`POST /api/custom-entity/v1/projects`

Use this API to create a new Project object record.

> 🗒 Things to Know
> 
> - This API only supports creating Project objects via Object Manager.

## Request body

- ProjectCreateRequest
  - `name` string, required — The name of the object.
  - `description` string — The description of the object.
  - `deadline` string, date — The deadline of the project.
  - `externalId` string — The external identifier for the project.
  - `projectLink` string, uri — The project link or other URL.
  - `intendedUse` string — The intended use of the project.
  - `businessValue` string — The business value of the project.
  - `projectOwner` string — The user assigned as the owner of the project.
  - `status` 'Draft' | 'Active' | 'In Progress' | 'On Hold' | 'Completed' | 'Cancelled' — The status of the project.
  - `type` 'AI' | 'Campaign' | 'Feature' | 'General' | 'Process' | 'Product' — The type of project.
  - `internalOrExternal` 'Internal' | 'External' — This parameter indicates whether the project is internal or external.
  - `promotionStatus` 'Not Promoted' | 'Promoted' | 'Promotion Pending' — The project promotion status.
  - `additionalAttributes` object — This parameter can be used to store attribute details in key value pairs.
  - `entityDetail` EntityDetailRequest
    - `extendedBaseAttributes` object — Base Seeded Attributes
  - `orgGroupId` EntityOrganizationInformation
    - `id` string, uuid, required — The unique identifier of the organization.
    - `name` string — The name of the organization.

## Response `201`

Project entity created successfully

- EntityInformation
  - `id` string, uuid, required — The unique identifier of the entity.
  - `number` integer, required — The numerical order in which the entity was created.
  - `name` string — The name of the entity.
  - `orgGroupId` string, uuid — The unique identifier of the organization.
  - `schemaId` string, uuid, required — The unique identifier of the schema.
  - `entityType` BasicEntityTypeInformation, required
    - `id` string, uuid, required — The unique identifier for the entity type.
    - `name` string, required — The name of the entity type.
    - `seeded` boolean — This parameter indicates whether the entity type is seeded or custom.
    - `moduleName` string — The name of the module where the entity exists.
    - `schemaName` string — The name of the schema.
  - `workflowAndStage` EntityWorkflowInformation
    - `id` string, uuid, required — The unique identifier of the workflow.
    - `name` string, required — The name of the workflow.
    - `type` string, required — The type of workflow.
    - `workflowMode` 'ADVANCED, BASIC' — This parameter indicates whether the workflow mode is null, basic, or advanced.
    - `stageId` string, uuid, required — The unique identifier of the workflow stage.
    - `stageName` string, required — The name of the workflow stage.
  - `attributes` object
  - `auditFields` EntityRecordAuditInformation
    - `createdDate` string, date-time, required — The date and time that the entity was last created.
    - `lastUpdatedDate` string, date-time — The date and time that the entity was last updated.
    - `createdBy` EntityBasicUserInformation
      - `id` string, uuid — The unique identifier of the user.
      - `name` string — The full name of the user.
      - `email` string — The email address of the user.
      - `initials` string — The initials for the first and last name of the user.
    - `lastModifiedBy` EntityBasicUserInformation
      - `id` string, uuid — The unique identifier of the user.
      - `name` string — The full name of the user.
      - `email` string — The email address of the user.
      - `initials` string — The initials for the first and last name of the user.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Too Many Requests. For more information, see [API Rate Limits](https://developer.onetrust.com/onetrust/reference/rate-limits-overview).
- `500` — Internal Server Error

---

[API](https://skmtc.net/onetrust/apis/platform-access-management.md) · [All operations](https://skmtc.net/onetrust/apis/platform-access-management/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/onetrust/platform-access-management/versions/21de3aa0b170/schema)
