Skip to content
Leadtime
English
Esc
navigateopen⌘Jpreview

Update task auto-generation settings

Updates the task auto-generation settings for the workspace. All fields are required.

What can be updated:

  • tasksAutoGenerateTitle: Enable or disable automatic title generation
  • tasksAutoGenerateSummary: Enable or disable automatic summary generation
  • tasksAutoGenerateIcon: Enable or disable automatic icon generation

How it works: When enabled, Leadtime uses AI to analyze task descriptions and automatically generate structured content. This saves time and ensures consistent, well-structured tickets throughout the workspace.

Note: This endpoint requires the WsSettings.manageSettings permission. Changes affect how all new tasks are created in the workspace.

PUT/administration/task-settings
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:write
or
AuthorizationBearer token (JWT) · headerrequired
Query parameters
fieldsToReturnstring
Comma-separated list of top-level response fields to return. Overrides the endpoint compact default unless responseShape=full is used.
responseShapestring
Advanced override. Omit for the endpoint compact default. Use full only when you need the complete endpoint response, including nested fields that are not selectable with fieldsToReturn.
Allowed:compactfull
Header parameters
LT-Response-Shapestring
Advanced override. Set to full only when you need the complete endpoint response, including nested fields that are not selectable with fieldsToReturn.
Allowed:full
Request body
requiredapplication/json
tasksAutoGenerateIconbooleanrequired
Whether to automatically generate task icons
tasksAutoGenerateSummarybooleanrequired
Whether to automatically generate task summaries
tasksAutoGenerateTitlebooleanrequired
Whether to automatically generate task titles
Responses
200Task auto-generation settings updated successfully
tasksAutoGenerateIconbooleanrequired
Whether to automatically generate task icons
tasksAutoGenerateSummarybooleanrequired
Whether to automatically generate task summaries
tasksAutoGenerateTitlebooleanrequired
Whether to automatically generate task titles
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X PUT "https://leadtime.app/api/public/administration/task-settings" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "tasksAutoGenerateIcon": true,
  "tasksAutoGenerateSummary": true,
  "tasksAutoGenerateTitle": true
}'
Response
{
  "tasksAutoGenerateIcon": true,
  "tasksAutoGenerateSummary": true,
  "tasksAutoGenerateTitle": true
}