Skip to main content
POST
/
projects
Create Project
curl --request POST \
  --url https://api.proced.ai/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "New Project Title",
  "startedAt": "2024-01-15T08:00:00.000Z",
  "dueAt": "2024-12-31T17:00:00.000Z"
}
'
{
  "id": "cm2uqwcpd002s7xta3b1j8q3p",
  "name": "New Project Title",
  "workspaceId": "cm2uj5ffn001x7xtag73jmpx0",
  "startedAt": "2024-01-15T08:00:00.000Z",
  "dueAt": "2024-12-31T17:00:00.000Z",
  "createdAt": "2024-01-01T09:00:00.000Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

The name or title of the project

Example:

"New Project Title"

startedAt
required

The starting date and time of the project

Example:

"2024-01-15T08:00:00.000Z"

dueAt
required

The due date and time for the project

Example:

"2024-12-31T17:00:00.000Z"

Response

Create Project

id
string
required

Unique project ID, typically generated automatically

Example:

"cm2uqwcpd002s7xta3b1j8q3p"

name
string
required

The name or title of the project

Example:

"New Project Title"

workspaceId
string
required

Workspace ID to which the project belongs

Example:

"cm2uj5ffn001x7xtag73jmpx0"

startedAt
required

The starting date and time of the project

Example:

"2024-01-15T08:00:00.000Z"

dueAt
required

The due date and time for the project

Example:

"2024-12-31T17:00:00.000Z"

createdAt

The creation date and time of the project, set automatically

Example:

"2024-01-01T09:00:00.000Z"