Zum Inhalt springen
Leadtime
Deutsch
Esc
navigateopen⌘Jpreview

Get task auto-generation settings

Retrieves the current task auto-generation settings for the workspace.

What are task auto-generation settings? These settings control whether Leadtime automatically generates task titles, summaries, and icons using AI when creating new tasks. When enabled, the system analyzes the task description and automatically creates:

  • Title: A concise, descriptive title based on the description
  • Summary: A short summary extracted from the entered text
  • Icon: A matching icon that visually represents the task content

What is returned:

  • tasksAutoGenerateTitle: Whether AI-generated titles are enabled
  • tasksAutoGenerateSummary: Whether AI-generated summaries are enabled
  • tasksAutoGenerateIcon: Whether AI-generated icons are enabled

Note: This endpoint requires the WsSettings.manageSettings permission. These settings affect how tasks are created throughout the workspace.

GET/administration/task-settings
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Responses
200Task auto-generation settings retrieved 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 GET "https://leadtime.app/api/public/administration/task-settings" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
{
  "tasksAutoGenerateIcon": true,
  "tasksAutoGenerateSummary": true,
  "tasksAutoGenerateTitle": true
}