v50

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-031984301.2 MB
Project

Update Project

Updates the project in terms of: name, description, due date, quote, and project resources. Observe the rules of JSON Merge Patch Semantics.

Project rescheduling (updating dueBy) is permitted only if:

  • there is no Customer Quote Approval task in the associated flow
  • at least one Customer Quote Approval was closed(in case multiple project batches)

Update projectPlan.taskConfigurations are now permitted before project is started. Elements are now pre-populated at project creation time.

For detailed information about Translation Memory advanced configuration including filters and field updates, see Translation Memory Advanced Configuration.

put/projects/{projectId}

Headers

Authorizationstring required

The bearer access token provided by Auth0.

X-LC-Tenantstring required

The identifier of the account where the request is executed.

Request body

namestring

The project name.
Unsupported characters in the name: \ / : * ? " < > |

descriptionstring

The project description.

dueBystring date-time nullable

UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"

deliveredBystring date-time nullable

UTC Timezone <br> Allowed formats: <br> "YYYY-MM-DDThh:mmZ" <br> "YYYY-MM-DDThh:mm:ssZ" <br> "YYYY-MM-DDThh:mm:ss.sZ" <br> "YYYY-MM-DDThh:mm:ss.ssZ" <br> "YYYY-MM-DDThh:mm:ss.sssZ"

Example request

{
  "dueBy": "2022-01-12T12:00:00Z",
  "deliveredBy": "2022-01-12T12:00:00Z",
  "projectPlan": {
    "taskConfigurations": [
      {
        "dueBy": "2022-01-12T12:00:00Z",
        "configurationValues": [
          {
            "id": "CONCURRENT_EDITING_ENABLED",
            "value": false
          }
        ]
      }
    ]
  },
  "settings": {
    "translationMemorySettings": {
      "filters": {
        "hardFilter": {
          "expression": "(NOT \"TU confirmation level\" = \"Not Translated\" OR \"Last modified on\" > 2024-02-29T10:00:00.000Z\") AND \"Source segment length\" >= 10"
        }
      }
    }
  }
}

Response

No Content