Update a project
Updates an existing project resource.
PUT /api/management/projects/{projectId}
Example request
PUT: /api/management/projects/movieDb
{
"id": "movieDb",
"name": "Movie database",
"description": "A source of movie and TV series",
"primaryLanguage": "en-GB",
"supportedLanguage": [
"fr-FR",
"de-DE"
]
}
Response messages
HTTP status code | Reason | Response model |
---|---|---|
200 | Success | Project |
401 | Unauthorized | Error |
404 | NotFound | Error |
422 | ValidationError | Error |
500 | InternalServerError | Error |
Remarks
It is not possible to update the Id once you've created a project.