POST
/
project
curl --request POST \
  --url https://api.teamcamp.app/v1.0/project \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '{
  "projectName": "<string>",
  "customerId": "<string>",
  "startDate": "2023-12-25",
  "dueDate": "2023-12-25"
}'
{
  "projectId": "<string>",
  "projectName": "<string>",
  "workspaceId": "<string>",
  "ownerId": "<string>",
  "description": "<string>",
  "customerId": "<string>",
  "startDate": "<string>",
  "dueDate": "<string>",
  "favoriteUsers": [
    "<string>"
  ],
  "projectUsers": [
    "<string>"
  ]
}

Authorizations

apiKey
string
header
required

Body

application/json
Project to add to the Workspace

The body is of type object.

Response

200
application/json
plant response

The response is of type object.