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
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