Skip to content

Create an initiative ​

POST/api/v1/workspaces/{slug}/initiatives/

Create a new initiative in the workspace

Path Parameters ​

slug:requiredstring

Workspace slug

Body Parameters ​

name:requiredstring

Name.

description:optionalstring

Description.

description_html:optionalstring

Description html.

description_stripped:optionalstring

Description stripped.

start_date:optionalstring

Start date.

end_date:optionalstring

End date.

logo_props:optionalobject

Logo props.

state:optionalstring
  • DRAFT - Draft
  • PLANNED - Planned
  • ACTIVE - Active
  • COMPLETED - Completed
  • CLOSED - Closed
archived_at:optionalstring

Archived at.

created_by:optionalstring

Created by.

updated_by:optionalstring

Updated by.

lead:optionalstring

Lead.

Scopes ​

initiatives:write

Create an initiative
bash
curl -X POST \
  "https://api.plane.so/api/v1/workspaces/my-workspace/initiatives/" \
  -H "X-API-Key: $PLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Example Name",
  "description": "Example description",
  "description_html": "<p>Example content</p>",
  "description_stripped": "Example description",
  "start_date": "2024-01-01T00:00:00Z",
  "end_date": "2024-01-01T00:00:00Z",
  "logo_props": "example-value",
  "state": "DRAFT",
  "archived_at": "2024-01-01T00:00:00Z",
  "created_by": "550e8400-e29b-41d4-a716-446655440000",
  "updated_by": "550e8400-e29b-41d4-a716-446655440000",
  "lead": "550e8400-e29b-41d4-a716-446655440000"
}'
Response201
json
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Example Name",
  "description": "Example description"
}