Skip to content

lb_update_para_item

Mutates editable fields on a PARA item. At least one of label, description, or deadline must be provided.

ParameterTypeRequiredDescription
idstringYesThe ID of the PARA item to update
labelstringNoNew label. Must be non-empty
descriptionstringNoNew description. Pass "" to clear
deadlinestring (ISO-8601 date)NoNew deadline as YYYY-MM-DD. Schema-validated

Returns the full updated PARA item:

{
"id": "...",
"category": "projects",
"slug": "my-project",
"label": "Renamed Project",
"description": "New description",
"deadline": "2026-12-31",
"status": "active",
"created_at": "..."
}
CodeWhen
INVALID_INPUTNo update fields were provided, or deadline is not a valid ISO-8601 date
NOT_FOUNDThe PARA item does not exist in the current tenant
  • To change category, slug, or status, use the purpose-built tools: create a new item (lb_create_para_item), archive (lb_archive_para_item), or unarchive (lb_unarchive_para_item).
  • deadline accepts calendar-date format only (YYYY-MM-DD). Strings like "next Friday" or "12/31/2026" are rejected by the schema.