Skip to content

Update an estimate point ​

PATCH/api/v1/workspaces/{slug}/projects/{project_id}/estimates/{estimate_id}/estimate-points/{estimate_point_id}/

Update a single estimate point for a project estimate.

Path Parameters ​

estimate_point_id:requiredstring

Estimate point ID

estimate_id:requiredstring

Estimate ID

project_id:requiredstring

Project ID

slug:requiredstring

Workspace slug

Body Parameters ​

key:optionalinteger

Numeric key used for ordering and display.

value:optionalstring

Display value for the estimate point (max 20 characters).

description:optionalstring

Description of the estimate point.

external_id:optionalstring

External ID from an external system.

external_source:optionalstring

External source identifier.

Scopes ​

projects.estimates:write

Update an estimate point
bash
curl -X PATCH \
  "https://api.plane.so/api/v1/workspaces/my-workspace/projects/550e8400-e29b-41d4-a716-446655440000/estimates/550e8400-e29b-41d4-a716-446655440000/estimate-points/550e8400-e29b-41d4-a716-446655440010/" \
  -H "X-API-Key: $PLANE_API_KEY" \
  # Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "value": "3",
    "description": "Small"
  }'
Response200
json
{
  "id": "550e8400-e29b-41d4-a716-446655440010",
  "created_at": "2024-01-15T10:40:00Z",
  "updated_at": "2024-01-21T09:45:00Z",
  "estimate": "550e8400-e29b-41d4-a716-446655440000",
  "key": 3,
  "value": "3",
  "description": "Small",
  "external_id": null,
  "external_source": null,
  "created_by": "16c61a3a-512a-48ac-b0be-b6b46fe6f430",
  "updated_by": "16c61a3a-512a-48ac-b0be-b6b46fe6f430",
  "project": "4af68566-94a4-4eb3-94aa-50dc9427067b",
  "workspace": "cd4ab5a2-1a5f-4516-a6c6-8da1a9fa5be4"
}