PUT
/
project
/
{projectId}
curl --request PUT \
  --url https://api.teamcamp.app/v1.0/project/{projectId} \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '{
  "projectName": "<string>",
  "customerId": "<string>",
  "startDate": "2023-12-25",
  "dueDate": "2023-12-25",
  "description": "<string>",
  "priority": true,
  "defaultPriority": "No Priority",
  "estimate": true,
  "milestone": true
}'
{
  "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

Path Parameters

projectId
string
required

ID of project to delete

Body

application/json

Update a details of the Project

The body is of type object.

Response

200
application/json

Project response

The response is of type object.