Skip to content
Leadtime
English
Esc
navigateopen⌘Jpreview

Partially update project status

Partially updates an existing project status. Only provided fields will be updated.

Optional fields (update only what you need):

  • name: Update display name
  • icon: Update icon identifier
  • type: Update status type (may affect billing eligibility)
  • description: Update or clear description
  • translations: Update translations (partial updates supported)

Note: Fields not included in the request will remain unchanged. This is useful when you only need to update specific properties without fetching the full current state.

PATCH/administration/project-settings/statuses/{id}
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:write
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Request body
requiredapplication/json
descriptionobject
Description of the project status
iconstring
Icon for the project status in format :icon_name:
namestring
Name of the project status
translationsProjectStatusTranslationDto[]
Translations for the project status
Show properties
Array of ProjectStatusTranslationDto
descriptionobject
Translated description of the project status in this language. Provides context about when to use this status.
languagestringrequired
ISO 639-1 language code for the translation (e.g., "en" for English, "de" for German)
nameobject
Translated name of the project status in this language. Used for multilingual display in the user interface.
typestring
Type of the project status
Allowed:SalesRequirementsImplementationQualityManagementBillingDone
Responses
200Project status updated successfully
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X PATCH "https://leadtime.app/api/public/administration/project-settings/statuses/string" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "description": "Project is currently in development phase",
  "icon": ":hourglass_flowing_sand:",
  "name": "In Progress",
  "translations": [
    {
      "description": "Project is currently in progress",
      "language": "en",
      "name": "In Progress"
    }
  ],
  "type": "Implementation"
}'
Response
Project status updated successfully