> ## Documentation Index
> Fetch the complete documentation index at: https://docs.memorylake.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Project

> Create a new project in a workspace

```
POST /openapi/memorylake/api/v3/workspaces/{workspaceId}/projects
```

Creates a new project in the specified workspace. You provide a name and custom identifier, and optionally attach a description, metadata, and industry classifications.

<Note>
  **Permission required:** `project:create`
</Note>

### Path Parameters

<ParamField path="workspaceId" type="string" required>
  Workspace identifier
</ParamField>

### Request Body

<ParamField body="name" type="string" required>
  Project name
</ParamField>

<ParamField body="custom_id" type="string" required>
  Custom identifier for external system integration. Must be unique within the workspace.
</ParamField>

<ParamField body="description" type="string">
  Project description
</ParamField>

<ParamField body="metadata" type="object">
  Arbitrary key-value pairs for storing additional project information
</ParamField>

<ParamField body="industry_ids" type="array">
  Array of industry identifiers to classify the project
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123/projects' \
    -H 'Authorization: Bearer sk_xxxxxx' \
    -H 'Content-Type: application/json' \
    -d '{
      "name": "Customer Research",
      "custom_id": "research-2024-q1",
      "description": "Interview transcripts and survey analysis",
      "metadata": {
        "team": "product",
        "quarter": "Q1-2024"
      },
      "industry_ids": ["ind_tech01"]
    }'
  ```
</RequestExample>

### Response

<ResponseField name="data" type="object">
  <Expandable title="Project object">
    <ResponseField name="id" type="string">Unique project identifier</ResponseField>
    <ResponseField name="name" type="string">Project name</ResponseField>
    <ResponseField name="description" type="string">Project description</ResponseField>

    <ResponseField name="industries" type="array">
      Industry classifications assigned to the project

      <Expandable title="Industry object">
        <ResponseField name="id" type="string">Industry identifier</ResponseField>
        <ResponseField name="name" type="string">Industry name</ResponseField>
        <ResponseField name="description" type="string">Industry description</ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="custom_id" type="string">Custom identifier for external system integration</ResponseField>
    <ResponseField name="created_at" type="string">Creation timestamp</ResponseField>
    <ResponseField name="updated_at" type="string">Last update timestamp</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "success": true,
    "data": {
      "id": "proj_def456",
      "name": "Customer Research",
      "description": "Interview transcripts and survey analysis",
      "industries": [
        {
          "id": "ind_tech01",
          "name": "Technology",
          "description": "Software and technology sector"
        }
      ],
      "custom_id": "research-2024-q1",
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z"
    }
  }
  ```
</ResponseExample>
