Authorizations
Body
application/json
Project to add to the Workspace
The body is of type object
.
Response
Project response
The response is of type object
.
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",
"templateId": "<string>"
}'
{
"projectId": "<string>",
"projectName": "<string>",
"workspaceId": "<string>",
"ownerId": "<string>",
"description": "<string>",
"customerId": "<string>",
"startDate": "<string>",
"dueDate": "<string>",
"favoriteUsers": [
"<string>"
],
"projectUsers": [
"<string>"
]
}
Create a new project in the Workspace
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",
"templateId": "<string>"
}'
{
"projectId": "<string>",
"projectName": "<string>",
"workspaceId": "<string>",
"ownerId": "<string>",
"description": "<string>",
"customerId": "<string>",
"startDate": "<string>",
"dueDate": "<string>",
"favoriteUsers": [
"<string>"
],
"projectUsers": [
"<string>"
]
}
Project to add to the Workspace
The body is of type object
.
Project response
The response is of type object
.