Skip to content

Create a work item type

POST/api/v1/workspaces/{workspace_slug}/projects/{project_id}/work-item-types/

Creates a new work item type in a project.

Path Parameters

workspace_slug:requiredstring

The workspace_slug represents the unique workspace identifier for a workspace in Plane. It can be found in the URL. For example, in the URL https://app.plane.so/my-team/projects/, the workspace slug is my-team.

project_id:requiredstring

The unique identifier of the project.

Body Parameters

name:optionalstring

Name of the work item type.

description:optionalstring

Description of the work item type.

logo_props:optionalobject

Logo properties for the work item type.

is_epic:optionalboolean

Whether this work item type is an epic.

is_default:optionalboolean

Whether this is the default work item type.

is_active:optionalboolean

Whether this work item type is active.

level:optionalnumber

Hierarchical level of the work item type.

Create a work item type
bash
curl -X POST \
  "https://api.plane.so/api/v1/workspaces/my-workspace/projects/project-uuid/work-item-types/" \
  -H "X-API-Key: $PLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "example-name",
  "description": "example-description",
  "logo_props": "example-logo_props",
  "is_epic": true,
  "is_default": true,
  "is_active": true,
  "level": 1
}'
Response201
json
{
  "id": "project-uuid",
  "name": "Project Name",
  "identifier": "PROJ",
  "description": "Project description",
  "created_at": "2024-01-01T00:00:00Z"
}