Skip to content

Add projects to teamspace

POST/api/v1/workspaces/{workspace_slug}/teamspaces/{teamspace_id}/projects/

Adds projects to a teamspace

Path Parameters

workspace_slug:requiredstring
teamspace_id:requiredstring

Body Parameters

project_ids:requiredstring[]

Array of project IDs to add to the teamspace

Add projects to teamspace
bash
curl -X POST \
  "https://api.plane.so/api/v1/workspaces/my-workspace/teamspaces/{teamspace_id}/projects/" \
  -H "X-API-Key: $PLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "project_ids": "example-project_ids"
}'
Response201
json
{
  "id": "project-uuid",
  "name": "Project Name",
  "identifier": "PROJ",
  "description": "Project description",
  "created_at": "2024-01-01T00:00:00Z"
}