Skip to main content
GET
/
project
/
{projectId}
/
getCurrentProjectDetails
cURL
curl --request GET \
  --url https://back.teamcamp.app/api/v1/project/{projectId}/getCurrentProjectDetails \
  --header 'apiKey: <api-key>'
{
  "_id": "<string>",
  "Name": "<string>",
  "CompanyId": "<string>",
  "Description": "<string>",
  "CreatedBy": "<string>",
  "CreatedTime": "2023-11-07T05:31:56Z",
  "UpdatedTime": "2023-11-07T05:31:56Z",
  "StartDate": "2023-11-07T05:31:56Z",
  "CustomerId": "<string>",
  "IsMilestone": true,
  "IsEstimate": true,
  "Priority": {
    "Enabled": true,
    "Default": 123
  },
  "FavoriteUsers": [
    "<string>"
  ],
  "LabelsList": [
    {
      "_id": "<string>",
      "Name": "<string>",
      "Color": "<string>",
      "CreatedBy": "<string>",
      "CreatedTime": "2023-11-07T05:31:56Z",
      "UpdatedBy": "<string>",
      "UpdatedTime": "2023-11-07T05:31:56Z"
    }
  ],
  "GithubRepository": 123,
  "LabelsEnabled": true,
  "StatusEnable": true,
  "IsGroupEnabled": true,
  "MultiAsignee": true,
  "Icon": {
    "Type": 123,
    "Reference": "<string>",
    "Color": 123
  },
  "taskFilter": {},
  "Resources": [
    {
      "_id": "<string>",
      "Type": 123,
      "Label": "<string>",
      "Reference": "<string>",
      "FileType": "<string>",
      "UploadFileType": 123,
      "CreatedBy": "<string>",
      "CreatedTime": "2023-11-07T05:31:56Z",
      "UpdatedBy": "<string>",
      "UpdatedTime": "2023-11-07T05:31:56Z"
    }
  ],
  "vercelProject": {
    "id": "<string>",
    "AccountId": "<string>",
    "Name": "<string>",
    "GithubRepoId": "<string>"
  },
  "ProjectUsers": [
    "<string>"
  ],
  "Status": [
    {
      "_id": "<string>",
      "Name": "<string>",
      "Type": 123,
      "Index": 123,
      "Default": true
    }
  ]
}

Authorizations

apiKey
string
header
required

Path Parameters

projectId
string
required

The unique identifier of the project to get details.

Minimum length: 10

Response

Successfully get project details.

_id
string

The ID of the project

Name
string

The name of the project

CompanyId
string

The company ID

Description
string | null

Description of the project

CreatedBy
string

Creator user ID

CreatedTime
string<date-time>

Project creation time

UpdatedTime
string<date-time>

Project last update time

StartDate
string<date-time>

Project start date

CustomerId
string

Customer ID

IsMilestone
boolean

Is milestone flag

IsEstimate
boolean

Is estimate flag

Priority
object

Priority information

FavoriteUsers
string[]

Array of favorite user IDs

LabelsList
object[]

List of labels

GithubRepository
integer

GitHub Repository ID

LabelsEnabled
boolean
StatusEnable
boolean
IsGroupEnabled
boolean
MultiAsignee
boolean
Icon
object
taskFilter
object
Resources
object[]

List of resources

vercelProject
object
ProjectUsers
string[]

List of project user IDs

Status
object[]

Project status list

I