GET
/
project
/
{projectId}
curl --request GET \
  --url https://api.teamcamp.app/v1.0/project/{projectId} \
  --header 'apiKey: <api-key>'
{
  "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

The unique identifier of the project to get project details.

Minimum length: 10

Response

200
application/json
Project response

The response is of type object.