Skip to main content
POST
/
governance
/
projects
Create a new project
curl --request POST \
  --url https://api.example.com/governance/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "external_id": "<string>",
  "description": "<string>",
  "project_type": "<string>"
}
'
{
  "id": "<string>",
  "external_id": "<string>",
  "name": "<string>",
  "organization_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for creating a project.

name
string
required

Display name of the project

external_id
string | null

External identifier for the project (e.g., for integration with external systems)

description
string | null

Optional description of the project's purpose

project_type
string | null

Type of project (e.g., 'analytics', 'ml', 'data-pipeline')

Response

Successful Response

Response body for a newly created project.

id
string
required

Unique identifier of the created project

external_id
string
required

External identifier for the project

name
string
required

Display name of the project

organization_id
string
required

ID of the organization this project belongs to

created_at
string<date-time>
required

Timestamp when the project was created