Skip to main content
POST
/
projects
Create a project
curl --request POST \
  --url https://api.projectcor.com/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "client_id": 123,
  "template_id": 123,
  "teams": [
    {
      "id": 123,
      "user_id": [
        123
      ]
    }
  ]
}
'
{
  "id": 123,
  "name": "<string>",
  "client_id": 123,
  "template_id": 123,
  "status": "<string>",
  "health": 123
}

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

Project Name

client_id
integer
required

Client ID

template_id
integer

Project Template ID

teams
object[]

Response

200 - application/json

Project created successfully

id
integer
name
string
client_id
integer
template_id
integer
status
string
health
integer