Zum Inhalt springen
Leadtime
Deutsch
Esc
navigateopen⌘Jpreview

Get project details

Returns complete project details including all settings, relationships, and metadata.

What is returned: The response includes:

  • Basic information: name, short name, type, value group, description, icon
  • Classification: category, status, phase, organization
  • Access settings: guest access, assigned users and teams
  • Task configuration: enabled task types and activities
  • Custom data: custom fields, tags
  • Responsibilities: default accountable user, responsible user
  • Timestamps: creation date, last edit date, archive date
  • Project metadata: color, favorite status, express quotations setting

The description field is returned as HTML (converted from the internal IDoc format).

GET/projects/{id}
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Responses
200
activitiesstring[]required
Array of time activity IDs enabled for the project
archivedAtobject | nullrequired
Archived timestamp
categoryIdstringrequired
ID of the project category
colorstringrequired
Project color (from organization or workspace default)
createdAtstring<date-time>required
Creation timestamp
customFieldsobjectrequired
Custom fields as key-value pairs
deadlineobject | nullrequired
Project deadline
defaultAccountableIdobject | nullrequired
ID of the default accountable user
descriptionstringrequired
Project description (HTML)
editedAtstring<date-time>required
Last edit timestamp
enableExpressQuotationsbooleanrequired
Whether express quotations are enabled
guestAccessbooleanrequired
Whether guest access is enabled
iconobject | nullrequired
Icon/emoji
idstringrequired
Project ID
isFavoritebooleanrequired
Whether the project is marked as favorite by the current user
namestringrequired
Project name
organizationobject | nullrequired
Organization details
Show properties
colorstring
namestring
shortNamestring
organizationIdobject | nullrequired
ID of the organization
phaseIdobject | nullrequired
ID of the project phase
responsibleIdobject | nullrequired
ID of the responsible user
shortNamestringrequired
Project short name (organization prefix + number)
shortNumbernumberrequired
Project short number
statusIdstringrequired
ID of the project status
tagsstring[]required
Array of tags
taskTypesstring[]required
Array of task type IDs enabled for the project
teamsstring[]required
Array of team IDs assigned to the project
typestringrequired
Project type
Allowed:SingleSupport
usersstring[]required
Array of user IDs assigned to the project
valueGroupstringrequired
Value group classification
Allowed:DirectValueIndirectValueNonValueWaste
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
404Project not found
Request
curl -X GET "https://leadtime.app/api/public/projects/string" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
{
  "activities": [
    "550e8400-e29b-41d4-a716-44665544000c",
    "550e8400-e29b-41d4-a716-44665544000d"
  ],
  "archivedAt": null,
  "categoryId": "550e8400-e29b-41d4-a716-446655440001",
  "color": "#FF5733",
  "createdAt": "2024-01-01T00:00:00.000Z",
  "customFields": {
    "customField1": "value1",
    "customField2": 123
  },
  "deadline": "2024-12-31T23:59:59.000Z",
  "defaultAccountableId": "550e8400-e29b-41d4-a716-446655440005",
  "description": "<h1>Project Description</h1><p>This is a comprehensive project.</p>",
  "editedAt": "2024-01-15T10:30:00.000Z",
  "enableExpressQuotations": false,
  "guestAccess": false,
  "icon": "🚀",
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "isFavorite": false,
  "name": "Website Redesign",
  "organization": {
    "color": "#FF5733",
    "name": "ACME Corporation",
    "shortName": "ACME"
  },
  "organizationId": "550e8400-e29b-41d4-a716-446655440004",
  "phaseId": "550e8400-e29b-41d4-a716-446655440003",
  "responsibleId": "550e8400-e29b-41d4-a716-446655440006",
  "shortName": "ACME-123",
  "shortNumber": 123,
  "statusId": "550e8400-e29b-41d4-a716-446655440002",
  "tags": [
    "urgent",
    "high-priority"
  ],
  "taskTypes": [
    "550e8400-e29b-41d4-a716-44665544000a",
    "550e8400-e29b-41d4-a716-44665544000b"
  ],
  "teams": [
    "550e8400-e29b-41d4-a716-446655440009"
  ],
  "type": "Single",
  "users": [
    "550e8400-e29b-41d4-a716-446655440007",
    "550e8400-e29b-41d4-a716-446655440008"
  ],
  "valueGroup": "DirectValue"
}